/** @type {import('next').NextConfig} */ const nextConfig = { reactStrictMode: true, compress: true, experimental: { appDir: true, }, webpack(config) { config.module.rules.push({ test: /\.svg$/, use: ["@svgr/webpack"], }); return config; }, output: "standalone", }; module.exports = nextConfig;