mirror of
https://dev.azure.com/tstanciu94/ReverseProxy/_git/ReverseProxy_Frontend
synced 2022-12-28 18:12:07 +02:00
16 lines
503 B
JavaScript
16 lines
503 B
JavaScript
const dev = {
|
|
REVERSE_PROXY_API_URL: "http://localhost:5050",
|
|
CHATBOT_API_URL: "http://localhost:5061",
|
|
REVERSE_PROXY_DOCS_URL: "https://toodle.ddns.net/docs/books/reverse-proxy"
|
|
};
|
|
|
|
const prod = {
|
|
NODE_ENV: "production",
|
|
PUBLIC_URL: "/reverse-proxy",
|
|
REVERSE_PROXY_API_URL: "https://toodle.ddns.net/reverse-proxy-api",
|
|
CHATBOT_API_URL: "https://toodle.ddns.net/chatbot-api",
|
|
REVERSE_PROXY_DOCS_URL: "https://toodle.ddns.net/docs/books/reverse-proxy"
|
|
};
|
|
|
|
module.exports = { dev, prod };
|