Rorschach 3c5a457766 '优化' | il y a 5 ans | |
---|---|---|
build | il y a 5 ans | |
config | il y a 5 ans | |
src | il y a 5 ans | |
.babelrc | il y a 5 ans | |
.editorconfig | il y a 5 ans | |
.eslintignore | il y a 5 ans | |
.eslintrc.js | il y a 5 ans | |
.gitignore | il y a 5 ans | |
README.md | il y a 5 ans | |
index.html | il y a 5 ans | |
package-lock.json | il y a 5 ans | |
package.json | il y a 5 ans | |
postcss.config.js | il y a 5 ans |
webpack-vue
│ README.md //项目说明
│ postcss.config.js //css前缀
│ package.json //依赖包
| index.html //页面
| .gitignore //git不提交的文件
| .eslintrc.js //eslint配置,规范代码
| .eslintignore //eslint不检测的文件
| .editorconfig //编辑器配置
| .babelrc //babel配置
|
└───src
│ │
│ │
│ │
│ └───
│ │
│ │
│ │
│
└───config //生产环境和开发环境配置
| │ dev.env.js //开发环境
| │ prod.env.js //生产环境
|
└───build // webpack配置
| webpack.base.conf.js //全局配置
| webpack.dev.conf.js //开发环境配置
| webpack.prod.conf.js //生产环境配置
代码里都有注释,跟vue-cli构建项目差不多,参考webpack