setupProxy.js 360 Bytes Raw Blame History Permalink 1 2 3 4 5 6 7 8 9 10 11 const { createProxyMiddleware } = require('http-proxy-middleware'); // 프록시 서버 만들어 줘서 프로트와 서버의 데이터 통신을 가능하게 해줌 module.exports = function (app) { app.use( '/api', createProxyMiddleware({ target: 'http://localhost:5000', changeOrigin: true, }) ); };