Skip to content

Commit f0dd7d2

Browse files
authored
Migration: Server-Side Rendering (#95)
1 parent 6cb000c commit f0dd7d2

File tree

2 files changed

+15
-1
lines changed

2 files changed

+15
-1
lines changed

src/.vuepress/config.js

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,8 @@ const sidebar = {
5454
collapsable: false,
5555
children: [
5656
'/guide/routing',
57-
'/guide/state-management'
57+
'/guide/state-management',
58+
'/guide/ssr'
5859
]
5960
},
6061
{

src/guide/ssr.md

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
# Server-Side Rendering
2+
3+
## The Complete SSR Guide
4+
5+
We have created a standalone guide for creating server-rendered Vue applications. This is a very in-depth guide for those who are already familiar with client-side Vue development, server-side Node.js development and webpack. Check it out at [ssr.vuejs.org](https://ssr.vuejs.org/).
6+
7+
## Nuxt.js
8+
9+
Properly configuring all the discussed aspects of a production-ready server-rendered app can be a daunting task. Luckily, there is an excellent community project that aims to make all of this easier: [Nuxt.js](https://nuxtjs.org/). Nuxt.js is a higher-level framework built on top of the Vue ecosystem which provides an extremely streamlined development experience for writing universal Vue applications. Better yet, you can even use it as a static site generator (with pages authored as single-file Vue components)! We highly recommend giving it a try.
10+
11+
## Quasar Framework SSR + PWA
12+
13+
[Quasar Framework](https://quasar.dev) will generate an SSR app (with optional PWA handoff) that leverages its best-in-class build system, sensible configuration and developer extensibility to make designing and building your idea a breeze. With over one hundred specific "Material Design 2.0"-compliant components, you can decide which ones to execute on the server, which are available in the browser, and even manage the `<meta>` tags of your site. Quasar is a node.js and webpack based development environment that supercharges and streamlines rapid development of SPA, PWA, SSR, Electron, Capacitor and Cordova apps—all from one codebase.

0 commit comments

Comments
 (0)