You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
2.When rendering a bundle that leverages webpack's on-demand code splitting features, we can ensure the optimal chunks are preloaded / prefetched, and also intelligently inject `<script>`tags for needed async chunks to avoid waterfall requests on the client, thus improving TTI (time-to-interactive).
This will return inline `<style>`tags containing all the critical CSS collected from the`*.vue`components used during the render. See [CSS Management](./css.md) for more details.
If a `clientManifest` is provided, the returned string will also contain `<link rel="stylesheet">`tags for webpack-emitted CSS files (e.g. CSS extracted with `extract-text-webpack-plugin`or imported with `file-loader`)
This method returns the `<script>`tags needed for the client application to boot. When using async code-splitting in the app code, this method will intelligently infer the correct async chunks to include.
0 commit comments