next.config.js 217 字节
Newer Older
1 2 3 4 5
const withCSS = require('@zeit/next-css')
module.exports = withCSS({
  webpack: config => {
    // Fixes npm packages that depend on `fs` module
    config.node = {
6
      fs: 'empty',
7 8 9
    }

    return config
10
  },
11
})