main-site/next.config.js
2022-12-14 19:34:39 +01:00

11 lines
189 B
JavaScript

/** @type {import('next').NextConfig} */
const nextConfig = {
reactStrictMode: true,
output: 'standalone',
compiler: {
styledComponents: true,
}
};
module.exports = nextConfig