File-based Routing
Routes will auto-generated for Vue files in this dir with the same file structure.
Check out vite-plugin-pages
for more details.
Path Aliasing
You can use /~/
aliasing to ./src/
folder.
For example, instead of having
import { isDark } from '../../../../logics'
now you can use
import { isDark } from '/~/logics'