所以我的设置很简单
styleguide.config.js
module.exports = {
components: 'src/components/**/*.js',
require: [
path.join(__dirname, 'node_modules/bootstrap/scss/bootstrap.scss')
]
};
每当我运行 npm run styleguide 时,我都会收到此错误:
模块解析失败:意外字符 @ 您可能需要适当的加载程序来处理此文件类型。
bootstrap.scss看起来像这样:
@import "node_modules/bootstrap/scss/functions";
@import "node_modules/bootstrap/scss/mixins";
...
...
我知道我需要添加 SASS-loader 但我发现的示例使用不同的上下文,所以我还不能真正弄清楚它们。
当我运行应用程序本身而不是样式指南时,ps SASS 在 React Styleguide 之外工作。