vue-cli webpack3 擴展多模塊打包

場景

在實際的項目開發中會出現這樣的場景,項目中須要多個模塊(單頁或者多頁應用)配合使用的狀況,而vue-cli默認只提供了單入口打包,因此就想到對vue-cli進行擴展html

實現

  • 首先得知道webpack是提供了多入口打包,那就能夠從這裏開始改造vue

    新建build/entry.jsnode

    const path = require('path')
    const fs = require('fs')
    
    const moduleDir = path.resolve(__dirname, '../src/modules')
    
    let entryObj = {}
    
    let moduleItems = fs.readdirSync(moduleDir)
    
    moduleItems.forEach(item => {
      entryObj[`${item}`] = `./src/modules/${item}/main.js`
    })
    
    module.exports = entryObj
    複製代碼

    這裏用到了nodejs的fs和path模塊,能夠查看文檔nodejs.cn/api/fs.html nodejs.cn/api/path.ht…,能夠根據本身的項目配置更改,此處是以src/modules/文件夾下的目錄做爲模塊,每一個模塊中都有一個main.js做爲入口文件webpack

    修改build/webpack.base.conf.js中entrygit

    const entryObj = require('./entry')
    module.exports = {
      entry: entryObj
    }
    複製代碼
  • 接下來就是如何將打包好的文件注入到html中,這裏利用html-webpack-plugin插件來解決這個問題,首先你須要有一個html的模板文件,而後在webpack配置中更改默認的html-webpack-plugin插件配置github

    添加build/plugins.jsweb

    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配置vue-cli

    module.exports = {
        plugins: configPlugins
    }
    複製代碼

    生產環境下配置與開發環境思路一致,須要注意的是html-webpack-plugin插件參數不一樣,參考原vue-cli的配置api

實戰

vue移動web通用腳手架ui

github地址: github.com/GavinZhuLei…

相關文章
相關標籤/搜索