From 487b8076ce0009630049d9dd09aea17a9fe1d044 Mon Sep 17 00:00:00 2001 From: Romuald Brillout Date: Tue, 2 Mar 2021 17:23:56 +0100 Subject: [PATCH] doc: add note in SSR guide about Vite Discord's #ssr channel (#2293) --- docs/guide/index.md | 4 ++++ docs/guide/ssr.md | 4 ++++ 2 files changed, 8 insertions(+) diff --git a/docs/guide/index.md b/docs/guide/index.md index 8ca3f02cfc24b9..04d47fe6f60e5e 100644 --- a/docs/guide/index.md +++ b/docs/guide/index.md @@ -127,3 +127,7 @@ yarn link ``` Then go to your vite based project and run `yarn link vite`. Now restart the development server (`yarn dev`) to ride on the bleeding edge! + +## Community + +If you have questions or need help, reach out to the community at [Discord](https://discord.gg/4cmKdMfpU5) and [GitHub Discussions](https://github.com/vitejs/vite/discussions). diff --git a/docs/guide/ssr.md b/docs/guide/ssr.md index 9fd1abd595fd6b..cecf86ce19bb06 100644 --- a/docs/guide/ssr.md +++ b/docs/guide/ssr.md @@ -10,6 +10,10 @@ SSR specifically refers to front-end frameworks (for example React, Preact, Vue, The following guide also assumes prior experience working with SSR in your framework of choice, and will only focus on Vite-specific integration details. ::: +:::tip Help +If you have questions, the community is usually helpful at [Vite Discord's #ssr channel](https://discord.gg/PkbxgzPhJv). +::: + ## Example Projects Vite provides built-in support for server-side rendering (SSR). The Vite playground contains example SSR setups for Vue 3 and React, which can be used as references for this guide: