mirror of
https://github.com/catthu/zk-stats-frontend-demo.git
synced 2026-01-09 11:17:53 -05:00
16 lines
307 B
JavaScript
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;
|
|
},
|
|
};
|