1
0
mirror of https://gitee.com/coder-xiaomo/algorithm-visualization synced 2025-01-10 19:58:18 +08:00
Code Issues Projects Releases Wiki Activity GitHub Gitee

没有什么用的改动

This commit is contained in:
程序员小墨 2022-05-18 17:24:18 +08:00
parent cbd867e5f4
commit bc08c2de83

View File

@ -4,6 +4,8 @@
> webpack框架真难调教调了好久才弄得勉强能用了不过应该还是有哪里没有调整对所以暂时先痛webpack开发了后面有心情再来研究
### 基本框架
@ -35,3 +37,34 @@ SVG 过渡动画
元素缓动
```
### Webpack
安装webpack
```bash
npm i webpack webpack-cli -D
npm i webpack webpack-cli -g
```
安装loader
```bash
npm i style-loader css-loader url-loader file-loader html-loader -D
```
安装plugins
```bash
npm i html-webpack-plugin mini-css-extract-plugin clean-webpack-plugin -D
```
devServer开发用
```bash
npm i webpack-dev-server -D
```