mirror of
https://github.com/Tria-plc/edr-platform.git
synced 2026-08-26 12:41:04 +00:00
15 lines
339 B
JavaScript
15 lines
339 B
JavaScript
/** @type {import('next').NextConfig} */
|
|
const nextConfig = {
|
|
output: 'standalone',
|
|
reactStrictMode: true,
|
|
transpilePackages: ['@edr/types', '@edr/ui-common'],
|
|
env: {
|
|
NEXT_PUBLIC_API_URL: process.env.NEXT_PUBLIC_API_URL || 'http://localhost:4000',
|
|
},
|
|
images: {
|
|
unoptimized: false,
|
|
},
|
|
};
|
|
|
|
module.exports = nextConfig;
|