vitesse/src/pages/README.md
2021-03-31 13:59:01 +08:00

410 B

File-based Routing

Routes will be auto-generated for Vue files in this dir with the same file structure. Check out vite-plugin-pages for more details.

Path Aliasing

~/ is aliased to ./src/ folder.

For example, instead of having

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

now, you can use

import { isDark } from '~/logic'