main-site/next.config.js

12 lines
204 B
JavaScript
Raw Normal View History

2022-12-03 20:02:13 +00:00
/** @type {import('next').NextConfig} */
const nextConfig = {
2022-12-11 16:32:01 +00:00
i18n: {
locales: ["en"],
defaultLocale: "en",
},
2022-12-03 20:02:13 +00:00
reactStrictMode: true,
output: 'standalone',
};
module.exports = nextConfig