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

This reverts commit 74151dbf2d.
This commit is contained in:
2025-11-17 17:16:37 -05:00
parent 74151dbf2d
commit cbefff34f5
5 changed files with 13 additions and 18 deletions

24
ui/vite.config.js Normal file
View File

@@ -0,0 +1,24 @@
import { fileURLToPath, URL } from 'node:url'
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))
},
},
server: {
allowedHosts: ["aj17thdev.nexuszone.net"]
}
})