簡介

基于 webpack2 實現(xiàn)的多入口項目腳手架,主要使用 extract-text-webpack-plugin 實現(xiàn) js 、css 公共代碼提取,html-webpack-plugin 實現(xiàn) html 多入口,less-loader 實現(xiàn) less 編譯,postcss-loader 配置 autoprefixer 實現(xiàn)自動添加瀏覽器兼容前綴,html-withimg-loader 實現(xiàn) html 內(nèi)引入圖片版本號添加和模板功能,babel-loader 實現(xiàn) ES6 轉(zhuǎn)碼功能, happypack 多線程加速構(gòu)建速度。

目錄

├── dist                     # 構(gòu)建后的目錄├── config                   # 項目配置文件│   ├── 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
        
		

網(wǎng)友評論