使用webpack搭建单页面程序十分常见,但在实际开发中咱们可能还会有开发多页面程序的需求,所以我研究了一下如何使用webpack搭建多页面程序。css
将每一个页面所在的文件夹都看做是一个单独的单页面程序目录,配置多个entry
以及html-webpack-plugin
便可实现多页面打包。html
下面为本项目目录结构webpack
. ├─ src │ └─ pages │ ├─ about │ │ ├─ index.css │ │ ├─ index.html │ │ └─ index.js │ └─ index │ ├─ index.css │ ├─ index.html │ └─ index.js └─ webpack.config.js
首先咱们来看一下单页面程序的 webpack 基础配置git
const HtmlWebpackPlugin = require('html-webpack-plugin'); module.exports = { entry: './src/index.js', plugins: [ new HtmlWebpackPlugin({ template: './src/index.html', filename: 'index.html', }), ], output: { path: path.resolve(__dirname, './dist'), filename: 'bundle.js', }, };
要想将其改成多页面程序,就要将它的单入口和单 HTML 模板改成多入口和多 HTML 模板github
传统的多入口写法能够写成键值对的形式web
module.exports = { entry: { index: './src/pages/index/index.js', about: './src/pages/about/index.js', }, ... }
这样写的话,每增长一个页面就须要手动添加一个入口,比较麻烦,所以咱们能够定义一个根据目录生成入口的函数来简化咱们的操做函数
const glob = require('glob'); function getEntry() { const entry = {}; glob.sync('./src/pages/**/index.js').forEach((file) => { const name = file.match(/\/pages\/(.+)\/index.js/)[1]; entry[name] = file; }); return entry; } module.exports = { entry: getEntry(), ... }
在输出的配置项中,再将输出的文件名写死显示已经不合适了,所以咱们要将名字改成与源文件相匹配的名字ui
module.exports = { ... output: { path: path.resolve(__dirname, './dist'), filename: 'js/[name].[contenthash].js', }, ... }
与入口相同,能够将不一样的 html 模板直接写入插件配置中,这里咱们须要为每一个插件配置不一样的chunks
,防止 js 注入到错误的 html 中插件
const HtmlWebpackPlugin = require('html-webpack-plugin'); module.exports = { ... plugins: [ new HtmlWebpackPlugin({ template: './src/pages/index/index.html', chunks: ['index'], filename: 'index.html', }), new HtmlWebpackPlugin({ template: './src/pages/about/index.html', chunks: ['about'], filename: 'about.html', }), ], ... };
这样的作法与入口有着一样的毛病,所以咱们再定义一个函数来生成这个配置code
const HtmlWebpackPlugin = require('html-webpack-plugin'); const glob = require('glob'); function getHtmlTemplate() { return glob .sync('./src/pages/**/index.html') .map((file) => { return { name: file.match(/\/pages\/(.+)\/index.html/)[1], path: file }; }) .map( (template) => new HtmlWebpackPlugin({ template: template.path, chunks: [template.name.toString()], filename: `${template.name}.html`, }) ); } module.exports = { ... plugins: [...getHtmlTemplate()], ... };
这样一个简单的多页面项目就配置完成了,咱们还能够在此基础上添加热更新、代码分割等功能,有兴趣的能够本身尝试一下
项目地址:xmy6364/webpack-multipage
// webpack.config.js const path = require('path'); const HtmlWebpackPlugin = require('html-webpack-plugin'); const glob = require('glob'); const { CleanWebpackPlugin } = require('clean-webpack-plugin'); // 多页入口 function getEntry() { const entry = {}; glob.sync('./src/pages/**/index.js').forEach((file) => { const name = file.match(/\/pages\/(.+)\/index.js/)[1]; entry[name] = file; }); return entry; } // 多页模板 function getHtmlTemplate() { return glob .sync('./src/pages/**/index.html') .map((file) => { return { name: file.match(/\/pages\/(.+)\/index.html/)[1], path: file }; }) .map( (template) => new HtmlWebpackPlugin({ template: template.path, chunks: [template.name.toString()], filename: `${template.name}.html`, }) ); } const config = { mode: 'production', entry: getEntry(), output: { path: path.resolve(__dirname, './dist'), filename: 'js/[name].[contenthash].js', }, module: { rules: [ { test: /\.css$/, use: ['style-loader', 'css-loader'], }, ], }, plugins: [new CleanWebpackPlugin(), ...getHtmlTemplate()], devServer: { contentBase: path.join(__dirname, 'dist'), compress: true, port: 3000, hot: true, open: true, }, }; module.exports = config;