- 基于webpack的前端多页面工程
- 默认采用 ts
- less 编译
- gzip 压缩
- eslint 检查
- stylelint 检查
- bundle-analyze boundle 构成分析
- ts typescript 语法支持
- dev
yarn dev
- build
yarn build
- 将 index.html index.ts 复制一份改名即可
- 如 index.html -> demo.html index.ts -> demo.ts
- **.ts 顶部的 require('file-loader!../index.html') 要和文件名保持一致
- 如 demo.ts 顶部则应该为 require('file-loader!../demo.html')