Files
edr-platform/apps/edr-passenger-web/portal/next.config.js
2026-07-02 22:42:15 +03:00

12 lines
238 B
JavaScript

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