icynet-admin/server/proxy.ts

12 lines
373 B
TypeScript

import httpProxy from 'http-proxy';
export const proxy = httpProxy.createProxyServer({
/**
* Get the actual back-end service url from env variables.
* We shouldn't prefix the env variable with NEXT_PUBLIC_* to avoid exposing it to the client.
*/
changeOrigin: process.env.NODE_ENV === 'production',
target: process.env.SERVER_URL,
autoRewrite: false,
});