2022-06-28 19:50:51 +02:00
|
|
|
/** @type {import('next').NextConfig} */
|
|
|
|
const nextConfig = {
|
2022-07-06 16:19:59 +02:00
|
|
|
reactStrictMode: true,
|
|
|
|
i18n: {
|
|
|
|
locales: ["cs"],
|
|
|
|
defaultLocale: "cs",
|
|
|
|
},
|
2022-07-06 18:31:17 +02:00
|
|
|
trailingSlash: true,
|
2022-07-06 16:19:59 +02:00
|
|
|
};
|
2022-06-28 19:50:51 +02:00
|
|
|
|
2022-07-06 16:19:59 +02:00
|
|
|
module.exports = nextConfig;
|