main-site/next.config.js
2022-12-11 17:32:01 +01:00

12 lines
204 B
JavaScript

/** @type {import('next').NextConfig} */
const nextConfig = {
i18n: {
locales: ["en"],
defaultLocale: "en",
},
reactStrictMode: true,
output: 'standalone',
};
module.exports = nextConfig