Files
edr-platform/apps/edr-passenger-web/portal/next.config.js
2026-06-03 07:38:27 +03:00

12 lines
263 B
JavaScript

/** @type {import('next').NextConfig} */
const nextConfig = {
output: 'export',
reactStrictMode: true,
transpilePackages: ['@edr/types', '@edr/ui-common'],
images: {
unoptimized: true, // Required for static export
},
};
export default nextConfig;