more typescript changes/conversion nonsense (this broke a lot of stuff)

This commit is contained in:
2025-11-17 16:00:20 -05:00
parent 881df1c2df
commit 74151dbf2d
5 changed files with 18 additions and 13 deletions

26
ui/vite.config.ts Normal file
View File

@@ -0,0 +1,26 @@
import { fileURLToPath, URL } from 'node:url'
import path from 'node:path'
import { defineConfig } from 'vite'
import vue from '@vitejs/plugin-vue'
import vueDevTools from 'vite-plugin-vue-devtools'
import tailwindcss from '@tailwindcss/vite'
// https://vite.dev/config/
export default defineConfig({
plugins: [
vue(),
vueDevTools(),
tailwindcss(),
],
resolve: {
alias: {
'@': fileURLToPath(new URL('./src', import.meta.url)),
'@shared': path.resolve(__dirname, '../shared/*')
},
},
server: {
allowedHosts: ["aj17thdev.nexuszone.net"]
}
})