11 lines
155 B
JavaScript
11 lines
155 B
JavaScript
// @ts-check
|
|
|
|
/**
|
|
* @type {import('next-i18next').UserConfig}
|
|
*/
|
|
module.exports = {
|
|
i18n: {
|
|
defaultLocale: "en",
|
|
locales: ["en", "de"],
|
|
},
|
|
}
|