- web/: Vue 3 + Vite + UnoCSS + Pinia, dark tactical theme (amber/#0d1117) - AppNav, ListingCard, SearchView with filters/sort, composables (useSnipeMode, useKonamiCode, useMotion), Pinia search store - Steal shimmer, auction countdown, Snipe Mode easter egg all native in Vue - docker/web/: nginx + multi-stage Dockerfile (node build → nginx serve) - compose.yml: api (8510) + web (8509) services - Dockerfile CMD updated to uvicorn for upcoming FastAPI layer - Clean build: 0 TS errors, 380 modules
32 lines
959 B
TypeScript
32 lines
959 B
TypeScript
import type * as http from "node:http";
|
|
import type * as https from "node:https";
|
|
import type * as undici from "undici";
|
|
|
|
export type ProxyOptions = {
|
|
/**
|
|
* HTTP(s) Proxy URL
|
|
*
|
|
* Default is read from `https_proxy`, `http_proxy`, `HTTPS_PROXY` or `HTTP_PROXY` environment variables
|
|
* */
|
|
url?: string;
|
|
|
|
/**
|
|
* List of hosts to skip proxy for (comma separated or array of strings)
|
|
*
|
|
* Default is read from `no_proxy` or `NO_PROXY` environment variables
|
|
*
|
|
* Hots starting with a leading dot, like `.foo.com` are also matched against domain and all its subdomains like `bar.foo.com`
|
|
*/
|
|
noProxy?: string | string[];
|
|
};
|
|
|
|
export declare const createProxy: (opts?: ProxyOptions) => {
|
|
agent: http.Agent | https.Agent | undefined;
|
|
dispatcher: undici.Dispatcher | undefined;
|
|
};
|
|
|
|
export declare const createFetch: (
|
|
proxyOptions?: ProxyOptions,
|
|
) => typeof globalThis.fetch;
|
|
|
|
export declare const fetch: typeof globalThis.fetch;
|