File tree Expand file tree Collapse file tree 6 files changed +28
-3
lines changed Expand file tree Collapse file tree 6 files changed +28
-3
lines changed Original file line number Diff line number Diff line change 1
1
# vue-server-renderer
2
2
3
- - [ API] ( api.md )
4
- - [ Renderer Options] ( options.md )
5
- - [ Why Use Bundle Renderer?] ( bundle-renderer.md )
3
+ - [ Basic Usage] ( basic.md )
4
+ - [ Why Use Bundle Renderer?] ( why-bundle-renderer.md )
6
5
- [ Creating the Server Bundle] ( server-bundle.md )
7
6
- [ Creating the Client Manifest] ( client-manifest.md )
8
7
- [ Caching] ( caching.md )
9
8
- [ Client Side Hydration] ( hydration.md )
9
+ - [ API Reference] ( api.md )
Original file line number Diff line number Diff line change
1
+ ## rendering a vm
2
+
3
+ ## rendering to stream
4
+
5
+ ## template
Original file line number Diff line number Diff line change
1
+ ## Component-level Caching
2
+
3
+ ## Page-level Caching
File renamed without changes.
Original file line number Diff line number Diff line change
1
+ ## Problems with Basic SSR
2
+
3
+ - webpack
4
+ - development and deployment
5
+ - source map
6
+ - code splitting
7
+
8
+ ## Enter BundleRenderer
9
+
10
+ - Generates a bundle JSON file by using webpack plugin
11
+ - Source map support
12
+ - Hot-reload of the bundle
13
+ - Works well with route-level code-splitting
14
+ - Automatic critical CSS injection with [ ` vue-style-loader ` ] ( https://github.com/vuejs/vue-style-loader )
15
+ - Automatic asset injection with [ clientManifest] ( ./client-manifest.md )
16
+
17
+ ## The ` runInNewContext ` Option
You can’t perform that action at this time.
0 commit comments