Files
CPLv4.0/next.config.mjs

12 lines
202 B
JavaScript

/** @type {import('next').NextConfig} */
const nextConfig = {
reactStrictMode: true,
output: "export",
trailingSlash: false,
images: {
unoptimized: true,
},
};
export default nextConfig;