XeNote/next.config.js
2022-03-23 11:14:40 +07:00

11 lines
195 B
JavaScript

module.exports = {
swcMinify: true,
webpack: (config) => {
config.resolve.fallback = {
fs: false,
buffer: false
};
return config;
},
}