11 lines
197 B
JavaScript
Executable file
11 lines
197 B
JavaScript
Executable file
/** @type {import('next').NextConfig} */
|
|
const nextConfig = {
|
|
reactStrictMode: true,
|
|
i18n: {
|
|
locales: ["cs"],
|
|
defaultLocale: "cs",
|
|
},
|
|
output: "standalone",
|
|
};
|
|
|
|
module.exports = nextConfig;
|