Spaces:
Runtime error
Runtime error
File size: 284 Bytes
58faf93 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 |
/** @type {import('next').NextConfig} */
const nextConfig = {
webpack: (config, { buildId, dev, isServer, defaultLoaders, webpack }) => {
config.module.rules.push({
test: /\.node$/,
use: 'node-loader',
});
return config;
},
}
module.exports = nextConfig
|