This commit is contained in:
2026-01-08 13:08:54 +08:00
parent 93879b532b
commit 25a98886d2

View File

@@ -26,7 +26,6 @@ type ConfigType = {
type?: 'static' | 'dynamic' | 'minio'; type?: 'static' | 'dynamic' | 'minio';
}[]; }[];
proxy: { proxy: {
port?: number;
/** /**
* self domain kevisual.xiongxiao.me * self domain kevisual.xiongxiao.me
*/ */
@@ -71,7 +70,6 @@ export const myConfig: ConfigType = {
}, },
], ],
proxy: { proxy: {
port: config.PROXY_PORT,
domain: config.PROXY_DOMAIN, domain: config.PROXY_DOMAIN,
resources: minioResources, resources: minioResources,
allowedOrigin: (config.PROXY_ALLOWED_ORIGINS as string)?.split(',') || [], allowedOrigin: (config.PROXY_ALLOWED_ORIGINS as string)?.split(',') || [],