Vue index.html contains <link> tags to several lazy-loaded components
问题 I'm trying to improve the load time of my website, and towards that, I'm using the following settings in my vue.config.js : config.output.chunkFilename(`js/[name].[chunkhash:8].js`) config.optimization .runtimeChunk('single') .splitChunks({ chunks: 'all', maxInitialRequests: Infinity, minSize: 0, cacheGroups: { vendor: { test: /[\\/]node_modules[\\/]/, name (module) { // get the name. E.g. node_modules/packageName/not/this/part.js // or node_modules/packageName const packageName = module