我正在尝试在一个项目中做一些事情,我不确定它是否可能,我是错误的方式或误解了什么。我们正在使用webpack,其目的是提供多个html文件。
localhost:8181 - >为index.html服务 localhost:8181 / example.html - >提供example.html
我正在尝试按照documentation:
设置多个入口点文件夹结构为:
/
|- package.json
|- webpack.config.js
/src
|- index.html
|- example.html
| /js
|- main.js
|- example.js
Webpack.config.js:
...
entry: {
main: './js/main.js',
exampleEntry: './js/example.js'
},
output: {
path: path.resolve(__dirname, 'build', 'target'),
publicPath: '/',
filename: '[name].bundle.js',
chunkFilename: '[id].bundle_[chunkhash].js',
sourceMapFilename: '[file].map'
},
...
的index.html
<!DOCTYPE html>
<html
<head>
...
<link type="text/css" href="/style/default.css">
</head>
<body>
<div id="container"></div>
<script src="/main.bundle.js"></script>
</body>
</html>
example.html的:
<!DOCTYPE html>
<html
<head>
...
<link type="text/css" href="/style/default.css">
</head>
<body>
...
<script src="/example.bundle.js"></script>
</body>
</html>
有人知道我做错了吗?
谢谢。
答案 0 :(得分:67)
将入口点视为树的根,它引用了许多其他资源,如javascript模块,图像,模板等。当您定义多个入口点时,您基本上将资产拆分为所谓的块,以便不将所有代码和资产放在一个捆绑包中。
我认为您想要实现的目标是为不同的应用程序提供多个“index.html”,这些应用程序也会引用您已使用入口点定义的不同资产块。
复制index.html文件或者甚至生成一个引用这些入口点的文件不是由入口点机制处理的 - 反之亦然。处理html页面的基本方法是使用html-webpack-plugin
,它不仅可以复制html文件,还具有广泛的模板机制。如果您希望将捆绑包后缀为捆绑哈希,这对于更新应用程序时避免浏览器缓存问题非常有用。
由于您已将名称模式定义为[id].bundle_[chunkhash].js
,因此您无法再将您的javascript包引用为main.bundle.js
,因为它将被称为main.bundle_73efb6da.js
。
查看html-webpack-plugin。特别适合您的用例:
你最终应该有这样的东西(警告:未经测试)
plugins: [
new HtmlWebpackPlugin({
filename: 'index.html',
template: 'src/index.html',
chunks: ['main']
}),
new HtmlWebpackPlugin({
filename: 'example.html',
template: 'src/example.html',
chunks: ['exampleEntry']
})
]
请注意在chunks数组中引用入口点的名称,因此在您的示例中,这应该是exampleEntry
。将模板移动到特定文件夹而不是将它们直接放在根src文件夹中也是一个好主意。
希望这有帮助。
答案 1 :(得分:3)
Webpack
中使用多个HTML 文件:通过直接嵌入以下代码来修改
webpack.config.js
。
const HtmlWebpackPlugin = require('html-webpack-plugin');
let htmlPageNames = ['example1', 'example2', 'example3', 'example4'];
let multipleHtmlPlugins = htmlPageNames.map(name => {
return new HtmlWebpackPlugin({
template: `./src/${name}.html`, // relative path to the HTML files
filename: `${name}.html`, // output HTML files
chunks: [`${name}`] // respective JS files
})
});
module.exports = {
entry: {
main: './js/main.js',
example1: './js/example1.js',
//... repeat until example 4
},
module: {
//.. your rules
};
plugins: [
new HtmlWebpackPlugin({
template: "./src/index.html",
chunks: ['main']
})
].concat(multipleHtmlPlugins)
};
您可以根据需要向htmlPageNames
数组添加任意数量的HTML页面。确保每个HTML和相应的JS文件都具有相同的名称(以上代码假定该名称)。
答案 2 :(得分:2)
如果您不需要两个不同的版本,也可以使用Copy Webpack Plugin,即假设您只想提供具有相同main.bundle.js
的其他HTML。
该插件非常简单(仅在webpack v4中测试):
const CopyWebpackPlugin = require('copy-webpack-plugin');
const config = {
plugins: [
new CopyWebpackPlugin([
{ from: './src/example.html', to: './example.html' }
])
]
}
然后在example.html
中,您可以从index.html
加载构建。 E.g:
<!DOCTYPE html>
<html
<head>
...
<title>Example</title>
</head>
<body>
<div id="container"> Show an example </div>
<script src="main.bundle.js"></script>
</body>
</html>
答案 3 :(得分:2)
RICHARD ABRAHAM 的解决方案对我来说效果很好,我还添加了 fsreaddir 函数来检测 html 文件
let htmlPageNames = [];
const pages = fs.readdirSync('./src')
pages.forEach(page => {
if (page.endsWith('.html')) {
htmlPageNames.push(page.split('.html')[0])
}
})
console.log(htmlPageNames);
答案 4 :(得分:0)
还有另一个解决方案,假设Webpack ^ 4.44.1。也就是说,将HTML导入您的JS / TS应用中。
示例webpack.config.js
const path = require('path');
const HtmlWebpackPlugin = require('html-webpack-plugin');
const { CleanWebpackPlugin } = require('clean-webpack-plugin');
module.exports = {
entry: { app: './src/index.ts' },
mode: 'development',
devtool: 'inline-source-map',
plugins: [
new CleanWebpackPlugin(),
new HtmlWebpackPlugin({
title: 'Development',
template: path.join(path.resolve(__dirname, 'src'), 'index.ejs')
}),
],
module: {
rules: [
{
test: /\.ts$/,
use: 'ts-loader',
include: [path.resolve(__dirname, 'src')],
exclude: /node_modules/,
},
{
test: /\.html$/i,
use: [
{
loader: 'file-loader',
options: {
name: '[name].[ext]'
}
}
],
// this exclude is required
exclude: path.join(path.resolve(__dirname, 'src'), 'index.html')
}
],
},
resolve: {
extensions: ['.ts', '.js'],
},
devServer: {
contentBase: path.join(__dirname, 'dist'),
compress: true,
port: 3900
},
output: {
filename: 'bundle.js',
path: path.resolve(__dirname, 'dist'),
},
};
对应的应用
import './about.html';
console.log('this is a test');
index.ejs
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Question</title>
</head>
<body>
<a href="./about.html">About</a>
</body>
</html>
about.html
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>About</title>
</head>
<body>
<p>This is an about page</p>
</body>
</html>
Webpack会将about.html复制到相应的 output 文件夹。
答案 5 :(得分:0)
plugins: [
...templates.map(template => new HtmlWebpackPlugin(template))
]
如果您有很多模板,此代码会有所帮助:)