Files
edr-platform/apps/edr-passenger-web/backoffice/next.config.js

12 lines
293 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',
},
distDir: 'dist',
};
module.exports = nextConfig;