import { defineConfig } from 'vite'
import react from '@vitejs/plugin-react'
export default defineConfig({
plugins: [react()],
server: {
proxy: {
'/api': {
target: 'http://localhost:3100',
changeOrigin: true,
rewrite: (path) => path.replace(/^\/api/, '')
},
'/stockApi':{
target:'https://opendart.fss.or.kr/api',
changeOrigin: true,
rewrite: (path) => path.replace(/^\/stockApi/, '')
}
},
}})
/api로 시작하는 주소는 http://localhost:3100에 매핑되며, 이때 rewire에 의해 /api는 주소에 포함되지 않는다.
/stockApi의 경우도 마찬가지다.
'컴퓨터 > 기타' 카테고리의 다른 글
[면접 준비] 운영체제 면접 질문과 답 정리 (1) | 2023.12.11 |
---|---|
[챗GPT] 챗 GPT로 타이핑 두 번 만에 웹사이트 만들기 (0) | 2023.02.27 |
내 아이피 주소 1초만에 확인하는 방법 (0) | 2023.02.07 |
[Quarus] Quartus_FPGA/Waveform.vwf specified with –testbench_vector_input_file option does not exist 에러 해결 (0) | 2022.09.25 |
컴공 복전하는 문과/문과의 이과 복전 느낀점/인문대생의 후회 (7) | 2021.11.21 |
댓글