我的项目结构:
webpack.config.js
app--
--> src
---->> components
------>>> myComponent.js
------>>> myComponent.scss
--> styles
---->> variables.scss
在 webpack.config module.exports 中:
...
resolve: {
alias: {
styles: path.join(__dirname, 'app/styles')
}
}
在我的文件中 - myComponent.scss:
@import "styles/variables";
构建 bundle.js 时出现此错误:
Module build failed:
@import "styles/variables";
^
File to import not found or unreadable: styles/variables
如何在 sass 文件中 @import 别名?