XeNote/next.config.js

6 lines
149 B
JavaScript
Raw Normal View History

2023-12-31 15:35:22 +00:00
export function webpack(config) {
2023-12-30 16:49:39 +00:00
config.resolve.fallback = { ...config.resolve.fallback, fs: false }
config.output = 'export'
2023-12-30 16:49:39 +00:00
return config
}