Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

webpack Can't resolve 'style'

I was trying to follow the simple Getting Started from (http://webpack.github.io/docs/tutorials/getting-started/). And I am getting this error when I try to load style.css.

ERROR in ./entry.js Module not found: Error: Can't resolve 'style' in 'Path to project in my computer' BREAKING CHANGE: It's no longer allowed to omit the '-loader' suffix when using loaders. You need to specify 'style-loader' instead of 'style'. @ ./entry.js 1:0-22

Any ideas ?

I installed css-loader and style-loader locally using mpm as explained in tutorial. npm install css-loader style-loader

I see node-modules folder created after the installation.

like image 742
Ravi Avatar asked Feb 13 '17 04:02

Ravi


1 Answers

For webpack version >=2.0

Update webpack.config.js

module.exports = {
    entry: "./entry.js",
    output: {
        path: __dirname,
        filename: "bundle.js"
    },
    module: {
        loaders: [
            { test: /\.css$/, loader: "style-loader!css-loader" }
        ]
    }
};

Use { test: /.css$/, loader: "style-loader!css-loader" } instead of { test: /.css$/, loader: "style!css!" }

like image 142
Abdul Avatar answered Sep 19 '22 08:09

Abdul