addseed-web/next.config.mjs

10 lines
174 B
JavaScript
Raw Normal View History

2024-10-12 17:05:06 +08:00
/** @type {import('next').NextConfig} */
2024-10-13 23:01:45 +08:00
const nextConfig = {
i18n: {
defaultLocale: 'en',
locales: ['en', 'zh-CN'],
}
};
2024-10-12 17:05:06 +08:00
export default nextConfig;