Files
Compagnon-du-Lagon---Marama/next.config.js

14 lines
243 B
JavaScript

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