12 lines
257 B
JavaScript
12 lines
257 B
JavaScript
|
/** @type {import('next').NextConfig} */
|
||
|
const nextConfig = {
|
||
|
reactStrictMode: true, // Recommended for the `pages` directory, default in `app`.
|
||
|
swcMinify: true,
|
||
|
experimental: {
|
||
|
// Required:
|
||
|
appDir: true,
|
||
|
},
|
||
|
};
|
||
|
|
||
|
module.exports = nextConfig;
|