portfolio/next.config.js
2022-07-06 18:31:17 +02:00

11 lines
196 B
JavaScript
Executable file

/** @type {import('next').NextConfig} */
const nextConfig = {
reactStrictMode: true,
i18n: {
locales: ["cs"],
defaultLocale: "cs",
},
trailingSlash: true,
};
module.exports = nextConfig;