簡(jiǎn)介
基于 webpack2 實(shí)現(xiàn)的多入口項(xiàng)目腳手架,主要使用 extract-text-webpack-plugin 實(shí)現(xiàn) js 、css 公共代碼提取,html-webpack-plugin 實(shí)現(xiàn) html 多入口,less-loader 實(shí)現(xiàn) less 編譯,postcss-loader 配置 autoprefixer 實(shí)現(xiàn)自動(dòng)添加瀏覽器兼容前綴,html-withimg-loader 實(shí)現(xiàn) html 內(nèi)引入圖片版本號(hào)添加和模板功能,babel-loader 實(shí)現(xiàn) ES6 轉(zhuǎn)碼功能, happypack 多線程加速構(gòu)建速度。
目錄
├── dist # 構(gòu)建后的目錄├── config # 項(xiàng)目配置文件│ ├── webpack.config.js # webpack 配置文件│ └── postcss.config.js # postcss 配置文件├── src # 程序源文件│ └── js # 入口│ ├ └── index.js # 匹配 view/index.html│ ├ └── user │ ├ ├ ├── index.js # 匹配 view/user/index.html│ ├ ├ ├── list.js # 匹配 view/user/list.html│ ├ └── lib # JS 庫等,不參與路由匹配│ ├ ├── jque