mirror of
https://github.com/PretendoNetwork/website.git
synced 2026-04-17 14:36:12 -05:00
13 lines
235 B
JavaScript
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;
|