Skip to content

Commit d341a91

Browse files
committed
Merge remote-tracking branch 'upstream/master'
2 parents 363015b + 3563338 commit d341a91

File tree

2 files changed

+2
-3
lines changed

2 files changed

+2
-3
lines changed

en/api.md

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -82,9 +82,8 @@ See [Introducing the Server Bundle](./bundle-renderer.md) and [Build Configurati
8282
- #### `clientManifest`
8383

8484
- 2.3.0+
85-
- only used in `createBundleRenderer`
8685

87-
Provide a client build manifest object generated by `vue-server-renderer/server-plugin`. The client manifest provides the bundle renderer with the proper information for automatic asset injection into the HTML template. For more details, see [Generating clientManifest](./build-config.md#generating-clientmanifest).
86+
Provide a client build manifest object generated by `vue-server-renderer/client-plugin`. The client manifest provides the bundle renderer with the proper information for automatic asset injection into the HTML template. For more details, see [Generating clientManifest](./build-config.md#generating-clientmanifest).
8887

8988
- #### `inject`
9089

en/bundle-renderer.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ const renderer = createBundleRenderer(serverBundle, {
3838
// inside a server handler...
3939
server.get('*', (req, res) => {
4040
const context = { url: req.url }
41-
// No need to pass an app here because it is auto-created by the
41+
// No need to pass an app here because it is auto-created by
4242
// executing the bundle. Now our server is decoupled from our Vue app!
4343
renderer.renderToString(context, (err, html) => {
4444
// handle error...

0 commit comments

Comments
 (0)