如何防止 commonsChunkPlugin 将块注入 html
How to prevent commonsChunkPlugin from injecting the chunks into html
我正在使用 preload-webpack-plugin 和 webpack 的 commonschunkplugin。我的 webpack 版本是 3.
现在的问题是,使用 preloadplugin,我已经在我的 vue 应用程序中预取了异步路由。但是由于还使用了commonschunkplugin,所以在页面加载之后,它也会像这样注入标签 -
<script type="text/javascript" charset="utf-8" async="" src="/static/js/3.3c5729583b9ce21e8fd8.js"></script>
于是,结果页面变成了这样-
<link rel="prefetch" href="/static/js/0.806cdda5777e81bb1a8b.js">
<link rel="prefetch" href="/static/js/1.95cf2f4474949209d50b.js">
<link rel="prefetch" href="/static/js/2.5231ce0aada93adb0dd7.js">
<link rel="prefetch" href="/static/js/3.6eef2cb918c01f721e28.js">
<link rel="prefetch" href="/static/js/4.228c75e21459a43cb71c.js">
<script type="text/javascript" charset="utf-8" async="" src="/static/js/0.806cdda5777e81bb1a8b.js"></script>
<script type="text/javascript" charset="utf-8" async="" src="/static/js/4.228c75e21459a43cb71c.js"></script>
我不想插入最后两个脚本标签,因为我已经预取了它们。
这是我的相关 webpack 配置 -
new HtmlWebpackPlugin({
filename: config.build.index,
template: 'index.html',
inject: true,
minify: {
removeComments: true,
collapseWhitespace: true,
removeAttributeQuotes: true
// more options:
// https://github.com/kangax/html-minifier#options-quick-reference
},
// necessary to consistently work with multiple chunks via CommonsChunkPlugin
chunksSortMode: 'dependency'
}),
// preloading assets
new PreloadWebpackPlugin({
rel: 'prefetch'
}),
// keep module.id stable when vendor modules does not change
new webpack.HashedModuleIdsPlugin(),
// enable scope hoisting
new webpack.optimize.ModuleConcatenationPlugin(),
// split vendor js into its own file
new webpack.optimize.CommonsChunkPlugin({
name: 'vendor',
minChunks (module) {
// any required modules inside node_modules are extracted to vendor
return (
module.resource &&
/\.js$/.test(module.resource) &&
module.resource.indexOf(
path.join(__dirname, '../node_modules')
) === 0
)
}
}),
// extract webpack runtime and module manifest to its own file in order to
// prevent vendor hash from being updated whenever app bundle is updated
new webpack.optimize.CommonsChunkPlugin({
name: 'manifest',
minChunks: Infinity
}),
// This instance extracts shared chunks from code splitted chunks and bundles them
// in a separate chunk, similar to the vendor chunk
// see: https://webpack.js.org/plugins/commons-chunk-plugin/#extra-async-commons-chunk
new webpack.optimize.CommonsChunkPlugin({
name: 'app',
async: 'vendor-async',
children: true,
minChunks: 3
}),
我在之前的项目中使用过这个。但不知何故,我不明白为什么在这个项目中,这些异步标签不断被注入。我匹配了相同的 webpack 版本,尝试了各种配置变体,但没有任何效果。
如能提供任何形式的帮助,我们将不胜感激!
将这些脚本注入 HTML 的是 HTMLWebpackPlugin,您有 2 个选项:
- 使用
excludeChunks
选项指定要忽略的块。
- 使用
chunks
选项指定要包含的块。
我正在使用 preload-webpack-plugin 和 webpack 的 commonschunkplugin。我的 webpack 版本是 3.
现在的问题是,使用 preloadplugin,我已经在我的 vue 应用程序中预取了异步路由。但是由于还使用了commonschunkplugin,所以在页面加载之后,它也会像这样注入标签 -
<script type="text/javascript" charset="utf-8" async="" src="/static/js/3.3c5729583b9ce21e8fd8.js"></script>
于是,结果页面变成了这样-
<link rel="prefetch" href="/static/js/0.806cdda5777e81bb1a8b.js">
<link rel="prefetch" href="/static/js/1.95cf2f4474949209d50b.js">
<link rel="prefetch" href="/static/js/2.5231ce0aada93adb0dd7.js">
<link rel="prefetch" href="/static/js/3.6eef2cb918c01f721e28.js">
<link rel="prefetch" href="/static/js/4.228c75e21459a43cb71c.js">
<script type="text/javascript" charset="utf-8" async="" src="/static/js/0.806cdda5777e81bb1a8b.js"></script>
<script type="text/javascript" charset="utf-8" async="" src="/static/js/4.228c75e21459a43cb71c.js"></script>
我不想插入最后两个脚本标签,因为我已经预取了它们。
这是我的相关 webpack 配置 -
new HtmlWebpackPlugin({
filename: config.build.index,
template: 'index.html',
inject: true,
minify: {
removeComments: true,
collapseWhitespace: true,
removeAttributeQuotes: true
// more options:
// https://github.com/kangax/html-minifier#options-quick-reference
},
// necessary to consistently work with multiple chunks via CommonsChunkPlugin
chunksSortMode: 'dependency'
}),
// preloading assets
new PreloadWebpackPlugin({
rel: 'prefetch'
}),
// keep module.id stable when vendor modules does not change
new webpack.HashedModuleIdsPlugin(),
// enable scope hoisting
new webpack.optimize.ModuleConcatenationPlugin(),
// split vendor js into its own file
new webpack.optimize.CommonsChunkPlugin({
name: 'vendor',
minChunks (module) {
// any required modules inside node_modules are extracted to vendor
return (
module.resource &&
/\.js$/.test(module.resource) &&
module.resource.indexOf(
path.join(__dirname, '../node_modules')
) === 0
)
}
}),
// extract webpack runtime and module manifest to its own file in order to
// prevent vendor hash from being updated whenever app bundle is updated
new webpack.optimize.CommonsChunkPlugin({
name: 'manifest',
minChunks: Infinity
}),
// This instance extracts shared chunks from code splitted chunks and bundles them
// in a separate chunk, similar to the vendor chunk
// see: https://webpack.js.org/plugins/commons-chunk-plugin/#extra-async-commons-chunk
new webpack.optimize.CommonsChunkPlugin({
name: 'app',
async: 'vendor-async',
children: true,
minChunks: 3
}),
我在之前的项目中使用过这个。但不知何故,我不明白为什么在这个项目中,这些异步标签不断被注入。我匹配了相同的 webpack 版本,尝试了各种配置变体,但没有任何效果。
如能提供任何形式的帮助,我们将不胜感激!
将这些脚本注入 HTML 的是 HTMLWebpackPlugin,您有 2 个选项:
- 使用
excludeChunks
选项指定要忽略的块。 - 使用
chunks
选项指定要包含的块。