Files
zk-stats-frontend-demo/next.config.js
2024-06-06 00:21:47 +07:00

16 lines
307 B
JavaScript

/** @type {import('next').NextConfig} */
module.exports = {
webpack: (config, { isServer, webpack }) => {
config.module.rules.push({
test: /\.wasm$/,
type: 'asset/resource',
generator: {
filename: 'static/wasm/[name].[hash][ext]'
}
});
return config;
},
};