test(vue): test app now uses vite and vitest (#26045)

This commit is contained in:
Liam DeBeasi
2022-09-30 13:22:46 -05:00
committed by GitHub
parent f74cba416b
commit 4cb32b6c6b
29 changed files with 1421 additions and 22964 deletions

View File

@ -140,7 +140,7 @@ const routes: Array<RouteRecordRaw> = [
]
const router = createRouter({
history: createWebHistory(process.env.BASE_URL),
history: createWebHistory(import.meta.env.BASE_URL),
routes
});