webpck
首先全局安装webpack
npm i webpack webpack-cli -g
1.新建文件夹 webpack_demo
2.新建index.html
把生成的 bundle.js 引入引入到 index.html 中
3.新建demo.css
4.新建entry.js
把 demo.css 引入 entry.js 中
5.生成package.json文件
npm init -y
npm i style-loader css-loader -D
6.配置webpack.congif.dev.js 文件
7.打包
webpack entry.js -o bundle.js --mode=development