stock 지표 수정 및 자산 분석 탭 항목 추가

This commit is contained in:
2026-03-05 03:12:25 +09:00
parent c28bd9368c
commit fa696b0c90
4 changed files with 251 additions and 21 deletions

View File

@@ -38,21 +38,36 @@ export default defineConfig({
secure: true,
rewrite: () => '/v8/finance/chart/%5EVIX?interval=1d&range=1d',
},
// 미국 10년물 국채 금리 (^TNX)
// 미국 10년물 국채 금리 (^TNX) — Yahoo Finance
// 프로덕션 nginx 설정 필요:
// location /ext/treasury {
// proxy_pass https://query1.finance.yahoo.com/v8/finance/chart/%5ETNX?interval=1d&range=1d;
// proxy_set_header Host query1.finance.yahoo.com;
// }
'/ext/treasury': {
target: 'https://query1.finance.yahoo.com',
changeOrigin: true,
secure: true,
rewrite: () => '/v8/finance/chart/%5ETNX?interval=1d&range=1d',
},
// WTI 원유 선물 (CL=F)
// WTI 원유 선물 (CL=F) — Yahoo Finance
// 프로덕션 nginx 설정 필요:
// location /ext/wti {
// proxy_pass https://query1.finance.yahoo.com/v8/finance/chart/CL%3DF?interval=1d&range=1d;
// proxy_set_header Host query1.finance.yahoo.com;
// }
'/ext/wti': {
target: 'https://query1.finance.yahoo.com',
changeOrigin: true,
secure: true,
rewrite: () => '/v8/finance/chart/CL%3DF?interval=1d&range=1d',
},
// Brent 원유 선물 (BZ=F)
// Brent 원유 선물 (BZ=F) — Yahoo Finance
// 프로덕션 nginx 설정 필요:
// location /ext/brent {
// proxy_pass https://query1.finance.yahoo.com/v8/finance/chart/BZ%3DF?interval=1d&range=1d;
// proxy_set_header Host query1.finance.yahoo.com;
// }
'/ext/brent': {
target: 'https://query1.finance.yahoo.com',
changeOrigin: true,