zkt24/frontend/next.config.js
2024-04-10 11:23:23 +02:00

15 lines
264 B
JavaScript

/** @type {import('next').NextConfig} */
const nextConfig = {
reactStrictMode: true,
nx: {
svgr: false,
},
// fix for running the docker container
output: 'standalone',
experimental: {
outputStandalone: true,
}
}
module.exports = nextConfig