박민정

[fix] Fix server-client connection error

......@@ -4,7 +4,7 @@ import axios from 'axios'
function LandingPage() {
// 랜딩페이지에 들어오자마자
useEffect(() => {
axios.get('http://localhost:5000/api/hello') // get request를 서버로 보냄 (endpoint는 /api/hello)
axios.get('/api/hello') // get request를 서버로 보냄 (endpoint는 /api/hello)
.then(response => console.log(response.data)) // 서버로부터 응답 받은 내용을 콘솔에 출력
}, [])
......
const { createProxyMiddleware } = require('http-proxy-middleware');
module.exports = function(app) {
app.use(
'/api',
createProxyMiddleware({
target: 'http://localhost:5000',
changeOrigin: true,
})
);
};
\ No newline at end of file
......@@ -111,7 +111,7 @@ app.get('/api/users/logout', auth, (req, res) => {
// test
app.get('/api/hello', (req, res) => {
res.send("hello");
res.send("hello world");
})
app.listen(port, () => {
......