diff --git a/en/bundle-renderer.md b/en/bundle-renderer.md index 2be30fe9..d354eb29 100644 --- a/en/bundle-renderer.md +++ b/en/bundle-renderer.md @@ -20,7 +20,7 @@ This is straightforward, however whenever you edit your app source code, you wou - Critical CSS injection (when using `*.vue` files): automatically inlines the CSS needed by components used during the render. See the [CSS](./css.md) section for more details. -- Asset injection with [clientManifest](./client-manifest.md): automatically infers the optimal preload and prefetch directives, and the code-split chunks needed for the initial render. +- Asset injection with [clientManifest](./api.md#clientmanifest): automatically infers the optimal preload and prefetch directives, and the code-split chunks needed for the initial render. --- @@ -31,7 +31,7 @@ const { createBundleRenderer } = require('vue-server-renderer') const renderer = createBundleRenderer(serverBundle, { runInNewContext: false, // recommended - template, // (optinal) page template + template, // (optional) page template clientManifest // (optional) client build manifest })