feat(plugin): support authenticated proxy (#3175)

Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com>
Co-authored-by: JellyBrick <shlee1503@naver.com>
Co-authored-by: qiye45 <qiye45@users.noreply.github.com>
This commit is contained in:
qiye45
2025-05-11 01:04:00 +08:00
committed by GitHub
parent b9269bf085
commit 852933d4d7
10 changed files with 434 additions and 1 deletions

View File

@ -0,0 +1,11 @@
export interface AuthProxyConfig {
enabled: boolean;
hostname: string;
port: number;
}
export const defaultAuthProxyConfig: AuthProxyConfig = {
enabled: false,
hostname: '127.0.0.1',
port: 4545,
};