Initial commit

This commit is contained in:
NinjaPug
2025-07-06 12:45:37 -04:00
commit d3e59e3786
34 changed files with 17636 additions and 0 deletions

16
proxy.conf.json Normal file
View File

@@ -0,0 +1,16 @@
{
"/api/*": {
"target": "http://192.168.1.193:5000",
"secure": false,
"changeOrigin": true,
"logLevel": "debug",
"headers": {
"Access-Control-Allow-Origin": "*",
"Access-Control-Allow-Methods": "GET, POST, OPTIONS",
"Access-Control-Allow-Headers": "Content-Type, Authorization"
},
"pathRewrite": {
"^/api": ""
}
}
}