mirror of
https://github.com/DerTyp7/apartment-altenau-nextjs.git
synced 2025-10-28 20:32:13 +01:00
11 lines
180 B
JavaScript
11 lines
180 B
JavaScript
/** @type {import('next').NextConfig} */
|
|
const nextConfig = {
|
|
reactStrictMode: true,
|
|
i18n: {
|
|
locales: ["en", "de"],
|
|
defaultLocale: "en",
|
|
},
|
|
};
|
|
|
|
module.exports = nextConfig;
|