Inside a scss file, I\'m trying to import custom, widely used chunk of scss (in a React/SASS/Webpack stack).
So that I can use a shared mixin.
Let\'s say I\'m cr
Found. Actually you can configure sass-loader in webpack.config.json, as described here : https://github.com/jtangelder/sass-loader
Here is the relevant part :
sassLoader: { includePaths: [path.resolve(__dirname, "./some-folder")] }