refactor(proxy): fix lint

This commit is contained in:
GeorgeDong32 2025-11-04 00:04:37 +08:00
parent 8924f954dd
commit 038da0de63

View File

@ -13,7 +13,7 @@ import { Dispatcher, EnvHttpProxyAgent, getGlobalDispatcher, setGlobalDispatcher
const logger = loggerService.withContext('ProxyManager')
let byPassRules: string[] = []
// Dynamic bypass rules that can be added/removed at runtime (e.g., for S3 endpoints)
let dynamicBypassRules: string[] = []
const dynamicBypassRules: string[] = []
type HostnameMatchType = 'exact' | 'wildcardSubdomain' | 'generalWildcard'