mirror of
https://github.com/MikroWizard/mikrofront.git
synced 2025-06-20 18:05:39 +02:00
22 lines
No EOL
345 B
TypeScript
22 lines
No EOL
345 B
TypeScript
|
|
const PROXY_CONFIG = [
|
|
{
|
|
context: [
|
|
"/api/frontver/"
|
|
],
|
|
target: "http://127.0.0.1/",
|
|
secure: false,
|
|
"changeOrigin": true,
|
|
logLevel: "debug",
|
|
},
|
|
{
|
|
context: [
|
|
"/api"
|
|
],
|
|
target: "http://172.17.0.1:8181/",
|
|
secure: false,
|
|
"changeOrigin": true,
|
|
}
|
|
]
|
|
|
|
module.exports = PROXY_CONFIG; |