-
Notifications
You must be signed in to change notification settings - Fork 4.8k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
通过import的scss文件间接引入node_modules中的scss文件报错 #2478
Comments
欢迎提交 Issue~ 如果你提交的是 bug 报告,请务必遵循 Issue 模板的规范,尽量用简洁的语言描述你的问题,最好能提供一个稳定简单的复现。🙏🙏🙏 如果你的信息提供过于模糊或不足,或者已经其他 issue 已经存在相关内容,你的 issue 有可能会被关闭。 Good luck and happy coding~ |
@imageslr 目前解决方法有两个:
|
谢谢! @js-newbee 明早看看 |
第二个方法很简单,已经解决,多谢! |
大神出手完美解决问题 !
js-newbee大神的方法真的很好 |
今日测试,不行了,依然会提示 |
./node_modules/taro-ui/dist/weapp/index.js |
您好,请问现在项目直接从taro1升级到3.0版本,plugins配置的写法完全变了,该如何配置sass中的引入文件别名配置呢 |
问题描述
在
/variables.scss
文件中引入taro-ui
的默认变量包,然后在/app.scss
中引入/variables.scss
时报错:message: 'File to import not found or unreadable: ~taro-ui/dist/style/index.scss.'
复现步骤
[复现问题的步骤]
/variables.scss
,内容仅有一行@import "~taro-ui/dist/style/index.scss";
/app.scss
中仅有一行@import "./styles/variables.scss";
/app.js
中import "./app.scss";
期望行为
编译成功
报错信息
系统信息
补充信息
根据报错信息
'File to import not found or unreadable: ~taro-ui/dist/style/index.scss.'
可以看到是在文件名index.scss
后面多加了一个点。直接导入
node_modules
中的scss就不会有此问题:/app.scss
中@import "~taro-ui/dist/style/index.scss";
,问题@import "~taro-ui/dist/style/index.scss";
亦无此问题The text was updated successfully, but these errors were encountered: