rsnext/examples/with-rbx-bulma-pro/next.config.js

12 lines
215 B
JavaScript
Raw Normal View History

const withCSS = require('@zeit/next-css')
module.exports = withCSS({
webpack: config => {
// Fixes npm packages that depend on `fs` module
config.node = {
fs: 'empty'
}
return config
}
})