refactor: split app context and user context

This commit is contained in:
Stavros
2025-03-14 17:36:22 +02:00
parent 7e39cb0dfe
commit d859f74a10
20 changed files with 290 additions and 134 deletions

View File

@@ -4,4 +4,14 @@ import react from "@vitejs/plugin-react-swc";
// https://vite.dev/config/
export default defineConfig({
plugins: [react()],
server: {
host: "0.0.0.0",
proxy: {
"/api": {
target: "http://tinyauth-backend:3000/api",
changeOrigin: true,
rewrite: (path) => path.replace(/^\/api/, ""),
},
}
}
});