gpt4 book ai didi

reactjs - React Styleguidist 和 SASS

转载 作者:行者123 更新时间:2023-12-02 03:43:24 25 4
gpt4 key购买 nike

所以我的设置非常简单

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,但我发现的示例使用不同的上下文,所以我还无法真正弄清楚它们。

附:当我运行应用程序本身时,SASS 在 React Styleguide 之外工作,而不是样式指南。

最佳答案

好的,解决方案是确保您的主项目可以编译 SASS。但这是另一个问题了。

我只需要将 webpackConfig 添加到

styleguide.config.js

module.exports = {
components: 'src/kitchensink/**/*.js',
webpackConfig: require('./config/webpack.config.dev.js'),
require: [
path.join(__dirname, './src/sass/bootstrap.scss')
]
};

关于reactjs - React Styleguidist 和 SASS,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/47703116/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com