So I'm trying to import my SCSS file with all vars and mixins definitions to all components I have. File name for defs is _defs.scss:
<style lang="scss"> @import "styles/defs"; some component styling </style> I also used alias in webpack to define where to look for styles folder:
resolve: { alias: { 'vue$': 'vue/dist/vue.esm.js', assets: path.resolve(__dirname, "src/assets/"), styles: path.resolve(__dirname, "src/styles/") } } But for some reason webpack still throws error telling he can't find the import file.
Where am I wrong?

sass-resources-loader?