14 lines
266 B
JavaScript
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;
|