1 回答
TA贡献1829条经验 获得超4个赞
有人回答建议查看html-webpack-inline-source-plugin但删除了他们的答案。但这正是我完成这项工作所需要的。
该插件不是 Vue 或 Vue-CLI 特定的,但如果您执行以下操作,它就可以工作:
1)vue.config.js在应用程序的根目录中添加一个文件。
2)上面链接的插件实际上是另一个包的扩展。你需要两者。
npm install --save-dev html-webpack-plugin
npm install --save-dev html-webpack-inline-source-plugin
3)
// vue.config.js
const HtmlWebpackPlugin = require('html-webpack-plugin')
const HtmlWebpackInlineSourcePlugin = require('html-webpack-inline-source-plugin');
module.exports = {
css: {
extract: false,
},
configureWebpack: {
optimization: {
splitChunks: false // makes there only be 1 js file - leftover from earlier attempts but doesn't hurt
},
plugins: [
new HtmlWebpackPlugin({
filename: 'output.html', // the output file name that will be created
template: 'src/output-template.html', // this is important - a template file to use for insertion
inlineSource: '.(js|css)$' // embed all javascript and css inline
}),
new HtmlWebpackInlineSourcePlugin()
]
}
}
4) 添加模板。这对于在 Vue 上下文中工作是必要的,因为没有它,默认情况下输出 html 文件将没有必要的,<div id="app"></div>并且 Vue 将不会挂载到任何东西。我基本上拿了正常输出的html文件,稍微修改了一下。
<!-- output-template.html -->
<!DOCTYPE html>
<html>
<head>
<meta charset=utf-8>
<meta http-equiv=X-UA-Compatible content="IE=edge">
<meta name=viewport content="width=device-width,initial-scale=1">
<title>example title</title>
</head>
<body><noscript><strong>We're sorry but my example doesn't work properly without JavaScript enabled. Please enable it to continue.</strong></noscript>
<div id=app>
</div>
<!-- plugin will insert js here by default -->
</body>
</html>
然后像正常一样构建,output.html文件将在/dist文件夹中
添加回答
举报