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

View File

@@ -1,24 +0,0 @@
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"]
}
})