Files
chesskit/next.config.js
GuillaumeSD 8e3d9220ce init
2024-02-14 04:40:43 +01:00

12 lines
204 B
JavaScript

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