monorepo/apps/web/next.config.mjs

12 lines
227 B
JavaScript

/** @type {import('next').NextConfig} */
const nextConfig = {
reactStrictMode: true,
swcMinify: true,
experimental: {
cpus: 28,
},
transpilePackages: ['@3rapp/store'],
};
export default nextConfig;