zkt24/frontend/next.config.js

15 lines
264 B
JavaScript
Raw Normal View History

2024-04-10 09:23:23 +00:00
/** @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