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

module.exports = nextConfig;