modmapper-web/next.config.js

12 lines
283 B
JavaScript
Raw Normal View History

2022-01-14 04:24:18 +00:00
/** @type {import('next').NextConfig} */
const nextConfig = {
reactStrictMode: true,
2022-02-27 06:17:52 +00:00
webpack: (config) => {
const experiments = config.experiments || {};
config.experiments = {...experiments, asyncWebAssembly: true};
return config
},
2022-01-14 04:24:18 +00:00
}
module.exports = nextConfig