Files
vegasco/src/Vegasco-Web/proxy.config.js
ThompsonNye 5727707cce
All checks were successful
continuous-integration/drone/push Build is passing
Add simply example for retrieving data from the api
2025-06-13 20:13:06 +02:00

12 lines
277 B
JavaScript

module.exports = {
"/api": {
target:
process.env["services__Vegasco-Server-Api__https__0"] ||
process.env["services__Vegasco-Server-Api__http__0"],
secure: process.env["NODE_ENV"] !== "development",
pathRewrite: {
"^/api": "",
},
},
};