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. error1

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

Most upvoted comments

Confirmed. I simply downgraded to 0.14x instead of modifying library code.