下一个js module.exports sass和static

时间:2019-02-06 03:56:55

标签: webpack next.js

我正试图弄清楚如何设置我的next.config.js文件以使用sass以及exportPathMap,这是我所拥有的:

module.exports = {
  withSass() {},
  exportPathMap: function() {
    return {
      '/': { page: '/' },
    };
  },
};

但是好像withSass()没有运行,我是否需要将withwithWass()包装出口路径映射?

1 个答案:

答案 0 :(得分:2)

我对exportPathMap部分一无所知,但应该像这样使用withSass :(它是一个HoC)

module.exports = withSass({
  exportPathMap: function() {
    return {
      '/': { page: '/' },
    };
  },
});