Files
edr-platform/apps/edr-passenger-web/backoffice/next.config.js
2026-06-05 11:28:33 +00:00

14 lines
314 B
JavaScript

/** @type {import('next').NextConfig} */
const nextConfig = {
reactStrictMode: true,
transpilePackages: ['@edr/types', '@edr/ui-common'],
env: {
NEXT_PUBLIC_API_URL: process.env.NEXT_PUBLIC_API_URL || 'http://localhost:4000',
},
images: {
unoptimized: true,
},
};
module.exports = nextConfig;