我正试图弄清楚如何设置我的next.config.js文件以使用sass以及exportPathMap,这是我所拥有的:
module.exports = {
withSass() {},
exportPathMap: function() {
return {
'/': { page: '/' },
};
},
};
但是好像withSass()没有运行,我是否需要将withwithWass()包装出口路径映射?
答案 0 :(得分:2)
我对exportPathMap
部分一无所知,但应该像这样使用withSass
:(它是一个HoC)
module.exports = withSass({
exportPathMap: function() {
return {
'/': { page: '/' },
};
},
});