Files
probly/next.config.js
2024-12-10 15:22:37 +01:00

12 lines
210 B
JavaScript

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