배경http-proxy-middleware 라이브러리를 사용하여 리액트 client와 express 서버를 연결하기 위해 프록시 설정을 하였다.문제 발생프록시 설정 후 서버를 실행했을 때 Cannot GET /hello (404 Not Found 에러)가 나왔다.문제 코드axios로 /api/hello 요청을 보내고 응답을 받는 함수import React, { useEffect } from "react";import axios from "axios";function LandingPage() { useEffect(() => { axios.get("/api/hello").then((response) => console.log(response)); }, []); return LandingPage;}..