Vue + Vite + SSR template based on @antfu's Vitesse with
vite-ssr.
-
📲 PWA
-
🎨 Windi CSS - on-demand Tailwind CSS with speed
-
🔥 Use the new
<script setup>style -
🖨 Server-side rendering (SSR) in Node.js via vite-ssr
-
🦾 TypeScript, of course
-
☁️ Deploy on Vercel, minimal config
- Windi CSS (On-demand TailwindCSS) - lighter and faster, with a bundle additional features!
- Windi CSS Typography - similar to Tailwind CSS Typography but for Windi CSS
- Iconify - use icons from any icon sets 🔍Icônes
vite-plugin-icons- icons as Vue components
- Vue Router
vite-plugin-pages- file system based routingvite-plugin-vue-layouts- layouts for pages
vite-plugin-components- components auto importvite-plugin-pwa- PWAvite-plugin-windicss- WindiCSS supportvite-plugin-md- Markdown as components / components in Markdownmarkdown-it-prism- Prism for syntax highlightingprism-theme-vars- customizable Prism.js theme using CSS variables
- Vue I18n - Internationalization
vite-plugin-vue-i18n- Vite plugin for Vue I18n
- VueUse - collection of useful composition APIs
@vueuse/head- manipulate document head reactively
- Use Composition API with
<script setup>SFC - ESLint with @antfu/eslint-config-vue, single quotes, no semi.
- TypeScript
- pnpm - fast, disk space efficient package manager
vite-ssr- Server-side rendering- Vercel - deploy
- VS Code Extensions
As this template is strongly opinionated, the following provides a curated list for community maintained variations with different preferences and feature sets. Check them out as well. PR to add yours are also welcome!
- vitesse-lite by @kn0wn
- vitesse-addons by johncampionjr - additional options for integrations, including Prettier and Storybook
Create a repo from this template on GitHub.
If you prefer to do it manually with the cleaner git history
npx degit frandiox/vitesse-ssr-template my-vitesse-app
cd my-vitesse-app
pnpm i # If you don't have pnpm installed, run: npm install -g pnpmWhen you use this template, try follow the checklist to update your info properly
- Add a
namefield inpackage.json - Change the author name in
LICENSE - Change the title in
App.vue - Change the favicon in
public - Remove the
.githubfolder which contains the funding info - Clean up the READMEs and remove routes
And, enjoy :)
Just run and visit http://localhost:3333
pnpm dev # SSR development
pnpm dev:spa # SPA without SSRTo build the App, run
pnpm buildAnd you will see the generated files in dist, and some of these files will be moved to serverless for deployment.
Go to Vercel and install its CLI. Then:
pnpm preview # Simulate Vercel environment locally
pnpm deploy
pnpm deploy:prodI have created several Vite apps recently. Setting the configs up is kinda the bottleneck for me to make the ideas simply come true within a very short time.
So I made this starter template for myself to create apps more easily, along with some good practices that I have learned from making those apps. It's strongly opinionated, but feel free to tweak it or even maintains your own forks. (see community maintained variation forks)