8 lines
182 B
JavaScript
8 lines
182 B
JavaScript
/** @type {import('next').NextConfig} */
|
|
const nextConfig = {
|
|
// reactStrictMode: true, // Enable strict mode (recommended)
|
|
swcMinify: true,
|
|
};
|
|
|
|
export default nextConfig;
|