chirag
chirag

Reputation: 23

Vendor.bundle.js is missing in angular 6?

Build using ng build it will generate following. And size of vendor.js is too high.

VendorJs

Upvotes: 0

Views: 1811

Answers (1)

Ivan Bogolyubskiy
Ivan Bogolyubskiy

Reputation: 86

ng build --prod --vendor-chunk=true

use it to bundle vendor.bundle.js separately

Upvotes: 2

Related Questions