Fixes: 1) Add missing import for useRouter in index.tsx; Extra: n/a;
30 lines
476 B
TypeScript
30 lines
476 B
TypeScript
import type {NextConfig} from "next";
|
|
|
|
const nextConfig: NextConfig = {
|
|
i18n: {
|
|
locales: [
|
|
'en-gb',
|
|
'ar-ar',
|
|
'cs-cz',
|
|
'da-dk',
|
|
'de-de',
|
|
'en-us',
|
|
'es-es',
|
|
'fr-fr',
|
|
'hi-in',
|
|
'it-it',
|
|
'ja-jp',
|
|
'kk-kz',
|
|
'nl-nl',
|
|
'pl-pl',
|
|
'pt-br',
|
|
'ro-ro',
|
|
'ru-ru',
|
|
'zh-hans'
|
|
],
|
|
defaultLocale: 'en-gb',
|
|
},
|
|
};
|
|
|
|
|
|
export default nextConfig;
|