在模板HTML中包含一个脚本标记,以便使用html-with-plugin为Webpack创建,可以按照以下步骤进行操作:
npm install webpack html-webpack-plugin --save-dev
const HtmlWebpackPlugin = require('html-webpack-plugin');
module.exports = {
// 其他配置项...
plugins: [
new HtmlWebpackPlugin({
template: 'path/to/your/template.html',
filename: 'output.html',
inject: 'body'
})
]
};
在上述配置中,需要将path/to/your/template.html
替换为你的模板HTML文件的路径,output.html
替换为生成的HTML文件的名称。
<script>
标签包裹你的脚本代码。例如:<!DOCTYPE html>
<html>
<head>
<title>My Webpage</title>
</head>
<body>
<h1>Hello, World!</h1>
<script>
// 在这里编写你的脚本代码
console.log('This is my script');
</script>
</body>
</html>
npx webpack
或者如果有全局安装Webpack,可以直接运行:
webpack
filename
)。打开该文件,你将看到模板HTML中包含了你的脚本标记。这样,你就成功地在模板HTML中包含了一个脚本标记,以便使用html-with-plugin为Webpack创建。
领取专属 10元无门槛券
手把手带您无忧上云