Skip to content

Instantly share code, notes, and snippets.

@lmiller1990
Created June 22, 2018 16:29
Show Gist options
  • Save lmiller1990/4cc0c726a6455fc3326e765c286da078 to your computer and use it in GitHub Desktop.
Save lmiller1990/4cc0c726a6455fc3326e765c286da078 to your computer and use it in GitHub Desktop.
// ...
server.get("*", (req, res) => {
const { app, store, App } = createApp()
App.asyncData(store).then(() => {
renderer.renderToString(app).then(html => {
res.end(html)
})
})
})
// ...
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment