Routes will be auto-generated for Vue files in this dir with the same file structure.
Check out vite-plugin-pages
for more details.
~/
is aliased to ./
folder.
src/
is aliased to ./src
folder.
store/
is aliased to ./store
folder.
pages/
is aliased to ./pages
folder.
For example, instead of having
import { isDark } from '../../../../logic'
now, you can use
import { isDark } from 'src/logic'