feat: make forms functional

This commit is contained in:
Stavros
2025-05-08 18:08:56 +03:00
parent fd96f39d3a
commit 56ae246ff4
18 changed files with 870 additions and 3387 deletions

View File

@@ -11,4 +11,15 @@ export default defineConfig({
"@": path.resolve(__dirname, "./src"),
},
},
server: {
host: "0.0.0.0",
proxy: {
"/api": {
target: "http://tinyauth-backend:3000/api",
changeOrigin: true,
rewrite: (path) => path.replace(/^\/api/, ""),
},
},
allowedHosts: true,
}
})