我的项目结构:
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
如何@import sass文件中的别名?