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
Copy file name to clipboardExpand all lines: packages/vue-ssr/README.md
+4-5Lines changed: 4 additions & 5 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -106,6 +106,10 @@ VueSSR.outlet = 'my-app'
106
106
107
107
In this example, Vue SSR expects a `<div id="my-app">` element in the HTML page.
108
108
109
+
*:warning: The CSS can flicker in developpement mode and load after the app is rendered. This is due to the HMR system having to append dynamic style tags in the page to get the fastest reloading possible. This is not the case in production mode (try running your app with `meteor --production`).*
You can modify the head and body of the SSR render with the `appendHtml` function. This example uses vue-meta:
@@ -144,11 +148,6 @@ VueSSR.createApp = function (context) {
144
148
}
145
149
```
146
150
147
-
148
-
*:warning: The CSS can flicker in developpement mode and load after the app is rendered. This is due to the HMR system having to append dynamic style tags in the page to get the fastest reloading possible. This is not the case in production mode (try running your app with `meteor --production`).*
0 commit comments