Webpack isn't able to find scss in node_modules
{
test: /\.scss$/,
use: [
{ loader: 'style-loader' },
{ loader: 'css-loader' },
{
loader: 'sass-loader',
options: {
includePaths: ['./node_modules'],
sourceMap: true
}
}
]
},
and in a SCSS file..
@import '~bootstrap-sass/assets/stylesheets/bootstrap';
@import '~bootstrap-sass/assets/stylesheets/bootstrap';
^
File to import not found or unreadable: ~bootstrap-sass/assets/stylesheets/bootstrap.