monorepo/apps/web/next.config.mjs

12 lines
227 B
JavaScript
Raw Normal View History

2024-06-25 21:59:50 +08:00
/** @type {import('next').NextConfig} */
2024-08-19 10:13:50 +08:00
const nextConfig = {
reactStrictMode: true,
swcMinify: true,
experimental: {
cpus: 28,
},
transpilePackages: ['@3rapp/store'],
};
2024-06-25 21:59:50 +08:00
export default nextConfig;