UI 디자인 대대적으로 대시보드 형태의 전문적인 느낌으로 재구성

This commit is contained in:
2026-03-04 01:39:26 +09:00
parent 840b0a5300
commit 618d5f8e6f
21 changed files with 3499 additions and 374 deletions

View File

@@ -14,6 +14,18 @@ export default defineConfig({
changeOrigin: true,
secure: true,
},
// Fear & Greed Index (CNN 공개 API)
// 프로덕션 nginx에서는 아래 proxy_pass 추가 필요:
// location /ext/feargreed {
// proxy_pass https://production.dataviz.cnn.io/index/fearandgreed/graphdata;
// proxy_set_header Host production.dataviz.cnn.io;
// }
'/ext/feargreed': {
target: 'https://production.dataviz.cnn.io',
changeOrigin: true,
secure: true,
rewrite: () => '/index/fearandgreed/graphdata',
},
},
},
})