22 lines
403 B
JavaScript
22 lines
403 B
JavaScript
/** @type {import('next').NextConfig} */
|
|
const nextConfig = {
|
|
output: "export",
|
|
distDir: "dist",
|
|
|
|
experimental: {
|
|
webpackBuildWorker: true,
|
|
},
|
|
|
|
images: {
|
|
unoptimized: true,
|
|
},
|
|
|
|
webpack: (config) => {
|
|
config.output.webassemblyModuleFilename = 'static/wasm/[modulehash].wasm'
|
|
config.experiments.asyncWebAssembly = true;
|
|
return config;
|
|
},
|
|
}
|
|
|
|
module.exports = nextConfig
|