Go to file
2022-07-27 03:04:09 +08:00
.github chore: bring back funding 2022-07-17 17:18:37 +08:00
.vscode chore: update deps 2022-05-11 14:00:21 +08:00
cypress chore: fix e2e test 2022-07-24 19:45:42 +08:00
locales Update fr.yml (#336) 2022-04-20 22:33:47 +08:00
public fix: favicon dark mode (#359) 2022-05-16 11:07:37 +08:00
src chore: update deps 2022-07-27 03:03:18 +08:00
test chore: lint 2022-05-01 11:52:59 +08:00
.dockerignore chore: fix container build and minimize container size (#380) 2022-07-01 00:09:36 +08:00
.editorconfig feat: add .editorconfig file (#379) 2022-06-30 12:01:56 +08:00
.eslintrc feat: integrate vitest 2021-12-26 13:16:12 +08:00
.gitignore chore: update deps 2021-09-25 15:04:54 +08:00
.npmrc feat: enable composable auto import 2022-05-24 15:17:55 +08:00
cypress.config.ts chore: upgrade cypress 2022-06-30 13:25:36 +08:00
Dockerfile chore: fix container build and minimize container size (#380) 2022-07-01 00:09:36 +08:00
index.html fix: favicon dark mode (#359) 2022-05-16 11:07:37 +08:00
LICENSE chore: update deps 2021-02-26 15:17:08 +08:00
netlify.toml chore: update deps 2021-11-28 01:31:02 +08:00
package.json feat: add up script for dep updating 2022-07-27 03:04:09 +08:00
pnpm-lock.yaml feat: add up script for dep updating 2022-07-27 03:04:09 +08:00
README.md feat: swtich to shiki for highlighting 2022-07-24 19:29:27 +08:00
README.zh-CN.md docs: update node requirement (#390) 2022-07-17 14:34:49 +08:00
tsconfig.json chore: update deps 2022-06-14 01:12:48 +08:00
unocss.config.ts fix: improve lighthouse accessibility (#362) 2022-05-17 22:15:17 +08:00
vite.config.ts feat: swtich to shiki for highlighting 2022-07-24 19:29:27 +08:00

Vitesse - Opinionated Vite Starter Template

Mocking up web app with Vitesse(speed)


Live Demo


English | 简体中文


Features


Pre-packed

UI Frameworks

  • UnoCSS - The instant on-demand atomic CSS engine.

Icons

Plugins

Coding Style

Dev tools

Variations

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 is also welcome!

Official
Community

Try it now!

Vitesse requires Node >=14.18

GitHub Template

Create a repo from this template on GitHub.

Clone to local

If you prefer to do it manually with the cleaner git history

npx degit antfu/vitesse my-vitesse-app
cd my-vitesse-app
pnpm i # If you don't have pnpm installed, run: npm install -g pnpm

Checklist

When you use this template, try follow the checklist to update your info properly

  • Change the author name in LICENSE
  • Change the title in App.vue
  • Change the hostname in vite.config.ts
  • Change the favicon in public
  • Remove the .github folder which contains the funding info
  • Clean up the READMEs and remove routes

And, enjoy :)

Usage

Development

Just run and visit http://localhost:3333

pnpm dev

Build

To build the App, run

pnpm build

And you will see the generated file in dist that ready to be served.

Deploy on Netlify

Go to Netlify and select your clone, OK along the way, and your App will be live in a minute.

Docker Production Build

First, build the vitesse image by opening the terminal in the project's root directory.

docker buildx build . -t vitesse:latest

Run the image and specify port mapping with the -p flag.

docker run --rm -it -p 8080:80 vitesse:latest

Why

I 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 maintain your own forks. (see community maintained variation forks)