Files
edr-platform/apps/edr-passenger-web/backoffice/next.config.js
2026-05-31 13:15:44 +03:00

11 lines
274 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',
},
};
module.exports = nextConfig;