박민정

[fix] Fix server-client connection error

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