Files
edr-platform/apps/edr-passenger-web/portal/next.config.js
2026-06-03 08:12:40 -07:00

12 lines
233 B
JavaScript

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