Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | 5 | ||
6 | 7 | 8 | 9 | 10 | 11 | 12 |
13 | 14 | 15 | 16 | 17 | 18 | 19 |
20 | 21 | 22 | 23 | 24 | 25 | 26 |
27 | 28 | 29 | 30 | 31 |
Tags
- node.js 설치
- 타자 게임 만들기
- intellij
- intllij 내 Bean을 찾지 못해서 발생하는 오류
- 노드에 리액트 추가하기
- 리액트
- props
- Colaboratory 글자 깨짐
- ReactDOM.render is no longer supported in React 18. Use createRoot instead
- 거북이 대포 게임
- 모던자바스크립트
- 자바스크립트
- You are importing createRoot from "react-dom" which is not supported. You should instead import it from "react-dom/client"
- vs code 내 node
- react
- Do it 자바스크립트 + 제이쿼리 입문
- 모두의 파이썬
- JS 개념
- 따라하며 배우는 노드 리액트 기본 강의
- react오류
- Spring-Framework
- spring-boot
- 계산맞추기 게임
- 인프런
- Concurrently
- Python
- googleColaboratory
- 웹 게임을 만들며 배우는 리액트
- DB Browser
- node.js로 로그인하기
Archives
- Today
- Total
프로그래밍 삽질 중
React setProxy 관련 오류 다시 생각하기[아직 해결x] 본문
* 문제 원인
* server 포트 : 5000 / client 포트 : 3000
- setProxy.js를 이용해 연결한 상황
- '/api' 설정 이외의 다른 루트로 연결 시 오류 발생
- 예를 들어 '/api' 이외의 '/hello'로 연결하고 싶어 연결하면 get 요청을 할 수 없다고 나옴
- setProxy 관련 블로그 글을 참고했으나 적용 시 오류 발생
-* 오류 상황
- 위의 처럼 여러 루트를 적용하고 싶을 때 적용 시 client에서 오류 발생
//수정 전
const { createProxyMiddleware } = require("http-proxy-middleware");
module.exports = function (app) {
app.use(
"/api",
createProxyMiddleware({
target: "http://localhost:5000",
changeOrigin: true,
})
);
};
//수정 후
const { createProxyMiddleware } = require("http-proxy-middleware");
module.exports = function (app) {
app.use(
createProxyMiddleware(['/api', '/hello']{
target: "http://localhost:5000",
changeOrigin: true,
})
);
};