Mocking up web app with โก๏ธVitesse
-
๐ File based routing
-
๐จ TailwindCSS with dark mode out-of-box
-
๐ i18n ready
-
๐ฆพ TypeScript, of course
-
โ๏ธ Deploy on Netlify, zero config
- Tailwind CSS - with built-in dark mode!
- Iconify - use icons from any icon sets ๐Icรดnes
- PurgeIcons - bundles only the icons that you use
- Vue Router
- vite-plugin-voie - file system based routing
- vite-plugin-components - components auto import
- vue-i18n - internationalization
- VueUse - collection of useful composition APIs
- Use Composition API with
<script setup>
SFC - ESLint with @antfu/eslint-config-vue, single colons, no semi.
- TypeScript
- Vue TypeScript Plugin - better type support for Vue
- pnpm - fast, disk space efficient package manager
- Netlify - deploy
- VS Code Extensions
Create a repo from this template on Github.
If you prefer do to it manually with 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
When you use this template, try follow the checklist to update your info properly
- Rename
name
field inpackage.json
- Change the author name in
LICENSE
- Change the title in
index.html
- Change the favicon in
public
- Remove the
.github
folder which contains the funding info - Clean up the READMEs and remove routes
And, enjoy :)
Just run and visit http://localhost:3000
pnpm dev
To build the App, run
pnpm build
And you will see the genrated file in dist
that ready to be served.
Go to Netlify and select you clone, OK
along the way, and your App will be live in a minute.
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 maintains your own forks.