Files
est-moni/next.config.js
2025-10-22 03:33:11 +00:00

14 lines
266 B
JavaScript

/** @type {import('next').NextConfig} */
const nextConfig = {
reactStrictMode: true,
transpilePackages: ['@ant-design', 'antd'],
compiler: {
styledComponents: true,
},
experimental: {
appDir: false,
}
}
module.exports = nextConfig;