10 lines
188 B
JavaScript
10 lines
188 B
JavaScript
/** @type {import('next').NextConfig} */
|
|
const nextConfig = {
|
|
reactStrictMode: true,
|
|
// webpack: (config, { webpack }) => {
|
|
// return config
|
|
// },
|
|
}
|
|
|
|
module.exports = nextConfig
|