Files
Compagnon-du-Lagon---Marama/next.config.js
2025-11-23 08:02:54 +01:00

19 lines
362 B
JavaScript

/** @type {import('next').NextConfig} */
const nextConfig = {
reactStrictMode: true,
swcMinify: true,
output: "standalone",
compress: true,
poweredByHeader: false,
images: {
formats: ["image/avif", "image/webp"],
minimumCacheTTL: 60,
},
experimental: {
optimizePackageImports: ["lucide-react"],
},
};
module.exports = nextConfig;