UI/logic updates, tests added, backend updated

This commit is contained in:
2026-03-18 06:46:45 +00:00
parent b80d2a7379
commit 251e3c5821
27 changed files with 2113 additions and 1142 deletions

View File

@@ -1,16 +1,28 @@
// vitest.config.ts
import { defineConfig } from 'vitest/config'
import vue from '@vitejs/plugin-vue'
import path from 'path'
export default defineConfig({
plugins: [vue()],
test: {
globals: true,
environment: 'jsdom',
css: false,
server: {
deps: {
inline: [/@exodus\/bytes/, /html-encoding-sniffer/],
inline: [
/@exodus\/bytes/,
/html-encoding-sniffer/,
/vuetify/
],
},
},
},
resolve: {
alias: {
'@': path.resolve(__dirname, './app'),
'~': path.resolve(__dirname, './app')
},
},
})