feat(app): initialize analytical panel

This commit is contained in:
Gleb Korotkiy
2026-06-19 17:15:05 +03:00
commit 75e9616bcb
25 changed files with 2994 additions and 0 deletions

16
vite.config.ts Normal file
View File

@@ -0,0 +1,16 @@
import { fileURLToPath, URL } from 'node:url'
import { defineConfig } from 'vitest/config'
import vue from '@vitejs/plugin-vue'
export default defineConfig({
plugins: [vue()],
resolve: {
alias: {
'@': fileURLToPath(new URL('./src', import.meta.url)),
},
},
test: {
environment: 'jsdom',
include: ['src/**/*.spec.ts'],
},
})