Files
edr-platform/apps/edr-passenger-web/portal/next.config.js
2026-06-02 19:14:34 +03:00

12 lines
233 B
JavaScript

/** @type {import('next').NextConfig} */
const nextConfig = {
reactStrictMode: true,
transpilePackages: ['@edr/types', '@edr/ui-common'],
output: 'standalone',
experimental: {
cpus: 1,
},
};
export default nextConfig;