Welcome toVigges Developer Community-Open, Learning,Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
1.1k views
in Technique[技术] by (71.8m points)

webpack - Is it harmful to do tree shaking on vendor chunks?


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)

Usually, tree shaking is a determining process, this means that for the same lib version, the code that is unused will be always removed.

So, it is affect the long term caching only for the first time you apply it.

If your code start using some unused function, this will invalidate the cache.

Pay attention that this cache is usable for the second visit of the user, but smaller vendor chunk is useable from the first visit!


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to Vigges Developer Community for programmer and developer-Open, Learning and Share
...