We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
how can i get vendors assets?
getBundles can get the vendors assets
getBundles
getBundles can't get vendors assets
{ "entrypoints": [ "app" ], "origins": { "./home": [ "home" ], "./about": [ "about" ], "app": [ "vendors", "app" ], "vendors": [ "app", "vendors" ] }, "assets": { "home": { "js": [ { "file": "home.chunk.js", "hash": "fdb00ffa16dfaf9cef0a", "publicPath": "/dist/home.chunk.js", "integrity": "sha256-Xxf7WVjPbdkJjgiZt7mvZvYv05+uErTC9RC2yCHF1RM= sha384-9OgouqlzN9KrqXVAcBzVMnlYOPxOYv/zLBOCuYtUAMoFxvmfxffbNIgendV4KXSJ sha512-oUxk3Swi0xIqvIxdWzXQIDRYlXo/V/aBqSYc+iWfsLcBftuIx12arohv852DruxKmlqtJhMv7NZp+5daSaIlnw==" } ] }, "about": { "js": [ { "file": "about.chunk.js", "hash": "7e88ef606abbb82d7e82", "publicPath": "/dist/about.chunk.js", "integrity": "sha256-ZPrPWVJRjdS4af9F1FzkqTqqSGo1jYyXNyctwTOLk9o= sha384-J1wiEV8N1foqRF7W9SEvg2s/FhQbhpKFHBTNBJR8g1yEMNRMi38y+8XmjDV/Iu7w sha512-b16+PXStO68CP52R+0ZktccMiaI1v0jOy34l/DqyGN7kEae3DpV3xPNoC8vt1WfE1kCAH7dlnHDdp1XRVhZX+g==" } ] }, "app": { "css": [ { "file": "app.css", "hash": "5888714915d8e89a8580", "publicPath": "/dist/app.css", "integrity": "sha256-3y4DyCC2cLII5sc2kaElHWhBIVMHdan/tA0akReI9qg= sha384-vCMVPKjSrrNpfnhmCD9E8SyHdfPdnM3DO/EkrbNI2vd0m2wH6BnfPja6gt43nDIF" } ], "js": [ { "file": "app.bundle.js", "hash": "0cbd05b10204597c781d", "publicPath": "/dist/app.bundle.js", "integrity": "sha256-sGdw+WVvXK1ZVQnYHI4FpecOcZtWZ99576OHCdrGil8= sha384-DZZzkPtPCTCR5UOWuGCyXQvsjyvZPoreCzqQGyrNV8+HyV9MdoYZawHX7NdGGLyi sha512-y29BlwBuwKB+BeXrrQYEBrK+mfWuOb4ok6F57kGbtrwa/Xq553Zb7lgss8RNvFjBSaMUdvXiJuhmP3HZA0jNeg==" } ] }, "vendors": { "css": [ { "file": "vendors.css", "hash": "5a9586c29103a034feb5", "publicPath": "/dist/vendors.css" } ], "js": [ { "file": "vendors.chunk.js", "hash": "5a9586c29103a034feb5", "publicPath": "/dist/vendors.chunk.js" } ] } } }
const modules = new Set(); const html = renderToString( <Loadable.Capture report={(moduleName) => { modules.add(moduleName); }} > <App /> </Loadable.Capture> ); const bundles = getBundles(manifest, [ ...manifest.entrypoints, ...Array.from(modules), ]); const scripts = bundles.js || [];
scripts exclude vendors.chunk.js
vendors.chunk.js
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Issue Title
how can i get vendors assets?
Expected Behavior
getBundles
can get the vendors assetsCurrent Behavior
getBundles
can't get vendors assetsSteps to Reproduce
scripts exclude
vendors.chunk.js
The text was updated successfully, but these errors were encountered: