mirror of
https://github.com/lone-cloud/gerbil
synced 2026-06-03 09:33:10 -07:00
8 lines
171 B
TypeScript
8 lines
171 B
TypeScript
export const PROXY = {
|
|
HOST: 'localhost',
|
|
LISTEN_HOST: '0.0.0.0',
|
|
PORT: 5002,
|
|
get URL() {
|
|
return `http://${this.HOST}:${this.PORT}` as const;
|
|
},
|
|
} as const;
|