webpack (with sass-loader) - scss file @import does not recognize resolve alias
Asked Answered
A

4

47

My project structure:

webpack.config.js
app--

   --> src
   ---->> components
   ------>>> myComponent.js
   ------>>> myComponent.scss

   --> styles
   ---->> variables.scss

In webpack.config module.exports:

...
resolve: {
    alias: {
       styles: path.join(__dirname, 'app/styles') 
   }
}

In my file - myComponent.scss:

@import "styles/variables";

I am getting this error when building bundle.js:

Module build failed:
@import "styles/variables";
^
      File to import not found or unreadable: styles/variables

How can I @import aliases in sass files?

Abiogenesis answered 11/1, 2016 at 8:42 Comment(6)
Perhaps adding information about the directory structure of the project, especially the files mentioned, would help.Intuitivism
added project structure to questionAbiogenesis
A very quick observation - may be irrelevant: the directory styles is included both in alias.styles as path.join(..., 'app/styles') and in the import as @import "styles/variables". It may need to be @import "variables".Intuitivism
@NikosParaskevopoulos That is the way that an alias is defined and used in webpack - webpack.github.io/docs/configuration.html#resolve-aliasAbiogenesis
Did you find a solution?Lipchitz
@Lipchitz - nope, still no solution. currently I just use the relative path in the sass file import, without referring to the alias..Abiogenesis
U
102

I was able to use, on a stylesheet, an alias that I defined in webpack by using the following:

@import '~alias/variables';

just by prefixing the alias with ~ did the trick for me, as suggested by documentation in here

Unguiculate answered 13/4, 2016 at 11:11 Comment(4)
This works great but how do you get your editor to stop complaining about it. Obvisouly ~alias directory doesn't exist.Marksman
@Marksman for you and anyone else who comes across this answer, see CrocoDillon's answer. Basically, if your config file looks exactly the same as his, you would use: @import '~styles/variables';Uchish
@Marksman Not sure about other editors, but IntelliJ/PhpStorm will use webpack.config.js to resolve imports, so it recognizes aliases.Ejectment
Using ~ is deprecated and can be removed from your code.Guard
C
9

Another fix related to this subject, remove .scss

@import '~scss/common.scss';

should be

@import '~scss/common';
Clavus answered 7/11, 2016 at 21:23 Comment(1)
2018 and stuck at this. I'm using @material packages and they are all without tilde character!! so sass-loader gets stuck at subsequent imports. Tried adding an alias for @material and point to path.resolve(__dirname, 'node_modules/@material') with no luck. Asked a question #48369139Backwater
L
3

Since your webpack.config.js file is already in the /app folder, shouldn’t the alias be:

resolve: {
   alias: {
       styles: path.join(__dirname, 'styles') 
   }
}

?

Lights answered 11/1, 2016 at 19:12 Comment(2)
Sorry, that was a mistake. Webpack.config is on the top level dir, edited question accordinglyAbiogenesis
Okay, already thought that’d be too easy. I’d have commented instead of answered but not enough rep.Lights
M
3

In my case the dependency is a node module, therefore I can import it like this:

@import '~node-module-name/variables';

And when using the actual node module dir name, my editor (PhpStorm) is not showing unresolved path error anymore (the problem which @tkiethanom mentioned). It looks like I need to specify alias in webpack config if I want to use sass style imports (e.g. my-package/colors instead of my-package/_colors.scss), and it seems it doesn't matter what is the name of that alias, as long as I use node module directory name

Merbromin answered 9/8, 2018 at 14:30 Comment(0)

© 2022 - 2024 — McMap. All rights reserved.