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