Fix mobile overlay and deps per #43
continuous-integration/drone/pr Build is failing
Test and Lint / backend-test (pull_request) Successful in 2m10s
Test and Lint / frontend-test (pull_request) Successful in 2m0s

This commit is contained in:
2025-10-29 11:11:53 +01:00
parent a1e9fb6ffc
commit f6f1c31369
13 changed files with 387 additions and 1143 deletions
+9 -3
View File
@@ -1,8 +1,12 @@
/// <reference types="vitest" />
// @ts-nocheck
import { defineConfig } from 'vite'
import react from '@vitejs/plugin-react'
import type { UserConfig as VitestUserConfig } from 'vitest/config'
// https://vite.dev/config/
export default defineConfig({
const config: VitestUserConfig = {
plugins: [react()],
build: {
rollupOptions: {
@@ -33,5 +37,7 @@ export default defineConfig({
changeOrigin: true,
},
},
},
})
}
}
export default defineConfig(config as any)