Add first loaders to handle css

- Installed style-loader and css-loader
- Configured webpack.config to use both loaders on css files
- Remember the order we use them in webpack.config matters
This commit is contained in:
Colt Steele
2019-03-05 14:50:31 -08:00
parent d13f75ab6c
commit 65c2ac4709
5 changed files with 166 additions and 0 deletions

View File

@ -11,6 +11,8 @@
"author": "",
"license": "ISC",
"devDependencies": {
"css-loader": "^2.1.0",
"style-loader": "^0.23.1",
"webpack": "^4.29.6",
"webpack-cli": "^3.2.3"
}