XeNote/next.config.js

7 lines
143 B
JavaScript
Raw Normal View History

2022-03-23 03:50:06 +00:00
module.exports = {
webpack: (config) => {
2023-12-26 04:04:13 +00:00
config.resolve.fallback = { ...config.resolve.fallback, fs: false };
return config;
},
}