/** @type {import('next').NextConfig} */ const nextConfig = { reactStrictMode: true, webpack(config, { isServer, dev }) { config.experiments = { asyncWebAssembly: true, layers: true }; return config; }, images: { unoptimized: true } }; module.exports = nextConfig;