시장 주요 지표 참고 추가

This commit is contained in:
2026-03-05 02:45:45 +09:00
parent ccc9f7c634
commit c28bd9368c
4 changed files with 372 additions and 32 deletions

View File

@@ -38,6 +38,27 @@ export default defineConfig({
secure: true,
rewrite: () => '/v8/finance/chart/%5EVIX?interval=1d&range=1d',
},
// 미국 10년물 국채 금리 (^TNX)
'/ext/treasury': {
target: 'https://query1.finance.yahoo.com',
changeOrigin: true,
secure: true,
rewrite: () => '/v8/finance/chart/%5ETNX?interval=1d&range=1d',
},
// WTI 원유 선물 (CL=F)
'/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)
'/ext/brent': {
target: 'https://query1.finance.yahoo.com',
changeOrigin: true,
secure: true,
rewrite: () => '/v8/finance/chart/BZ%3DF?interval=1d&range=1d',
},
},
},
})