-
Notifications
You must be signed in to change notification settings - Fork 71
Closed
Description
Hey ! I'm getting some :
ERROR in ./~/css-loader!./~/resolve-url-loader?fail!./~/sass-loader?sourceMap!./src/css/application.scss
resolve-url-loader cannot operate: source-map error cannot establish a common base path for all sources in the incoming source-map
webpack: bundle is now VALID.
My loaders look like that :
module: {
loaders: [
{ test: /\.jsx.coffee$/, loaders: ["jsx?harmony", "coffee"], exclude: /node_modules/ },
{ test: /\.coffee$/, loader: "coffee-loader", exclude: /\.jsx.coffee$|node_modules/ },
{ test: /\.js$/, loaders: ["babel-loader"], exclude: /node_modules|rollbar|mixpanel/ },
{ test: /\.json$/, loader: "json" },
{ test: /\.css$/, loaders: ["style", "css", "resolve-url?fail"] },
{ test: /\.scss$/, loaders: ["style", "css", "resolve-url?fail", "sass?sourceMap"] },
{ test: /\.woff2?$|\.ttf$|\.eot$|\.svg$|\.png$|\.jpg$/, loader: "file" }
]
},
And I have :
devtool: "source-map",
I'm not quite sure how to debug this ?
richard-uk1