html-inline-chunk-webpack-plugin
v0.0.1
Published
Simplifies creation of HTML files to serve your webpack bundles
Maintainers
Readme
Contributors
在html-webpack-plugin基础上支持将特定的入口文件以内联的形式注入到html模板中 例:
new HtmlWebpackPlugin(
{
inject: true,
template: paths.appHtml,
/** 要注入的入口文件名*/
inlineChunks: ['test'],
}
)