source: next.config.js@ e007fcd

main
Last change on this file since e007fcd was 95ce58b, checked in by anastasovv <simon@…>, 2 years ago

Saving sessions data and poker data to database

  • Property mode set to 100644
File size: 263 bytes
RevLine 
[6568bde]1/** @type {import('next').NextConfig} */
2const nextConfig = {
3 reactStrictMode: true,
[95ce58b]4
5 webpack: (config) => {
6 config.experiments = config.experiments || {}
7 config.experiments.topLevelAwait = true
8 return config
9 },
[6568bde]10}
11
12module.exports = nextConfig
Note: See TracBrowser for help on using the repository browser.