Next.jsでwebpackを設定にしているのですが以下のようなエラーが出てしまいます。
わかる方がいましたら教えてください。
よろしくお願いします
TypeError: The "original" argument must be of type Function ./node_modules/node-libs-browser/node_modules/util/util.js:602 599 | 600 | exports.promisify = function promisify(original) { 601 | if (typeof original !== 'function') > 602 | throw new TypeError('The "original" argument must be of type Function'); 603 | 604 | if (kCustomPromisifiedSymbol && original[kCustomPromisifiedSymbol]) { 605 | var fn = original[kCustomPromisifiedSymbol];
const withSass = require('@zeit/next-sass'); module.exports = withSass({ /* config options here */ }); module.exports = { webpack: config => { config.node = { fs: 'empty', child_process: 'empty', net: 'empty', dns: 'empty', tls: 'empty', }; return config; }, };
あなたの回答
tips
プレビュー