css-loader: css-loader doesn't work anymore with v0.15.1
after updated to v0.15.1 from v0.14.x, css loader doesn’t work any more.
here is the config:
const sassLoaders = [
"css",
"sass?" + ["outputStyle=expanded",
"includePaths[]=" + nodeModulesPath,
"includePaths[]=" + bowerComponentsPath].join("&")
].join("!");
later on
{
test: /\.scss$/,
loader: ExtractTextPlugin.extract("style-loader", sassLoaders, {
publicPath: './'
})
},
About this issue
- Original URL
- State: closed
- Created 9 years ago
- Comments: 22 (1 by maintainers)
Commits related to this issue
- Update dependencies * Note, css-loader only updated to 0.14.5 per this discussion: * https://github.com/webpack/css-loader/issues/84 — committed to shakacode/bootstrap-sass-loader-example by justin808 9 years ago
- Ignore null source maps fixes #84 closes #90 — committed to webpack-contrib/css-loader by markdalgleish 9 years ago
Confirmed. I simply downgraded to 0.14x instead of modifying library code.