/** * @type {import('next').NextConfig} */ module.exports = { reactStrictMode: true, swcMinify: true, eslint: { ignoreDuringBuilds: true, }, cleanDistDir: true, experimental: { images: { allowFutureImage: true, }, }, images: { dangerouslyAllowSVG: true, contentSecurityPolicy: "default-src 'self'; script-src 'none'; sandbox;", }, };