/ next.config.ts
next.config.ts
1 import type { NextConfig } from 'next'; 2 3 const nextConfig: NextConfig = { 4 output: 'standalone', 5 reactStrictMode: true, 6 poweredByHeader: false, 7 images: { 8 domains: ['bsky.social'], 9 }, 10 webpack: (config) => { 11 config.output.webassemblyModuleFilename = 'static/wasm/[modulehash].wasm' 12 config.experiments = { ...config.experiments, asyncWebAssembly: true } 13 return config 14 } 15 }; 16 17 export default nextConfig;