XeNote/next.config.js
2022-03-31 15:12:00 +07:00

10 lines
194 B
JavaScript

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