webpack打包多頁面應用,先思考🤔完成多頁面打包須要實現的目標:html
實現目標須要完成哪些任務:前端
const webpackConfig = {
// ... other config
entry: {
index1: [./src/index1.js],
index2: [./src/index2.js],
},
output: {
path: path.resolve(__dirname, '../build'),
filename: '[name]-[hash:4].js',
chunkFilename: '[name]-[hash:4].chunk.js',
publicPath: '/',
},
optimization: {
runtimeChunk: false,
splitChunks: {
cacheGroups: {
vendors: {
test: /[\\/]node_modules[\\/]/,
name: 'vendor',
chunks: 'all',
minChunks: 2,
},
},
},
},
// ... loader ...
plugins: [
// ... other plugins
new HtmlWebpackPlugin({
inject: true,
filename: 'index1.html', // 輸出的html名稱,默認爲 index.html
template: path.resolve(__dirname, '../public/template.html'),
// Allows to control how chunks should be sorted before they are included to the HTML. Allowed values are 'none' \| 'auto' \| 'dependency' \| 'manual' \| {Function}
// 簡單解釋: 控制多個 chunks 的在html注入的順序
chunksSortMode: 'dependency',
chunks: ['index1', 'vendor'], // 該 vendor 文件是使用 splitChunks打包出的公共 node_modules js文件,若是沒用則不用加
}),
new HtmlWebpackPlugin({
inject: true,
filename: 'index2.html',
template: path.resolve(__dirname, '../public/template.html'), //模板可用不一樣的
chunksSortMode: 'dependency',
chunks: ['index2', 'vendor'],
})
]
}
複製代碼
至此 webpack 配置完成,前三個任務完成node
接下來配置服務端對不一樣入口訪問時返回前端對應html頁面webpack
本項目使用的 koa2 啓動前端服務 此處 使用 koa2-history-api-fallback
完成了 路由 rewrite,此 npm 包是 connect-history-api-fallback
基於 koa2應用的實現git
app.use(history({
rewrites: [{
from: /^\/[a-zA-Z0-9/]+$/, // 匹配 /index1/view/login/dengdeng
to: function(context) {
const { pathname } = context.parsedUrl
const page = pathname.match(/^\/[^/]*/[0].substr(1))
return `/${page}.html` // 返回 /index1.html 有前端路由決定渲染
}
}]
}))
複製代碼
webpack打包多頁面應用已完成,主要用最簡單例子講述其中有哪些細節 優化處可本身實現:github
附上github: github.com/Jarryxin/mp…web
關於前端路由和後端路由的分析: www.cnblogs.com/songyao666/…npm