标签:igp mod for span syn require res 注入 file
在实际的项目开发中会出现这样的场景,项目中需要多个模块(单页或者多页应用)配合使用的情况,而vue-cli默认只提供了单入口打包,所以就想到对vue-cli进行扩展
首先得知道webpack是提供了多入口打包,那就可以从这里开始改造
新建build/entry.js
1 const path = require(‘path‘) 2 const fs = require(‘fs‘) 3 4 const moduleDir = path.resolve(__dirname, ‘../src/modules‘) 5 6 let entryObj = {} 7 8 let moduleItems = fs.readdirSync(moduleDir) 9 10 moduleItems.forEach(item => { 11 entryObj[`${item}`] = `./src/modules/${item}/main.js` 12 }) 13 14 module.exports = entryObj
const entryObj = require(‘./entry‘) module.exports = { entry: entryObj }
下来就是如何将打包好的文件注入到html中,这里利用html-webpack-plugin插件来解决这个问题,首先你需要有一个html的模板文件,然后在webpack配置中更改默认的html-webpack-plugin插件配置
添加build/plugins.js
const HtmlWebpackPlugin = require(‘html-webpack-plugin‘) let configPlugins = [] Object.keys(entryObj).forEach(item => { configPlugins.push(new HtmlWebpackPlugin( { filename: ‘../dist/‘ + item + ‘.html‘, template: path.resolve(__dirname, ‘../index.html‘), chunks: [item] } )) }) module.exports = configPlugins
修改build/webpack.dev.conf.js配置
module.exports = {
plugins: configPlugins
}
vue移动web通用脚手架
github地址: https://github.com/GavinZhuLei/vue-mobile
标签:igp mod for span syn require res 注入 file
原文地址:https://www.cnblogs.com/gavinzl/p/8759042.html