website/next.config.js
2022-11-27 12:27:32 +01:00

13 lines
235 B
JavaScript

/** @type {import('next').NextConfig} */
import { getLocaleList } from './utils/locale.js';
const nextConfig = {
reactStrictMode: true,
i18n: {
locales: getLocaleList(),
defaultLocale: 'en-US',
}
};
export default nextConfig;