UI/logic updates, tests added, backend updated
This commit is contained in:
@@ -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')
|
||||
},
|
||||
},
|
||||
})
|
||||
Reference in New Issue
Block a user