- Notifications
You must be signed in to change notification settings - Fork 380
Closed
Labels
Description
If you refer to images in the bootstrap-loader files, they are not found because there's no default for the image path.
We need to uncomment this line in
// Default for the style loading is to put in your js files // styleLoader: "style-loader!css-loader!sass-loader";
And it needs to contain the imagePath like this:
module: { loaders: [ { test: /\.scss$/, loader: "style!css!sass?outputStyle=expanded&imagePath=/assets/images"},