12 lines
257 B
JavaScript
Executable File
12 lines
257 B
JavaScript
Executable File
/** @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;
|