source: next.config.js

main
Last change on this file was 95ce58b, checked in by anastasovv <simon@…>, 23 months ago

Saving sessions data and poker data to database

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