Skip to content

Files

Latest commit

75eb3da · Dec 5, 2023

History

History
This branch is 15 commits behind antfu-collective/vitesse-lite:main.

pages

File-based Routing

Routes will be auto-generated for Vue files in this dir with the same file structure. Check out unplugin-vue-router for more details.

Path Aliasing

~/ is aliased to ./src/ folder.

For example, instead of having

import { isDark } from '../../../../composables'

now, you can use

import { isDark } from '~/composables'