[React] Invalid options object. Dev Server has been initialized using an options object that does not match the API schema
🥐 오류 Invalid options object. Dev Server has been initialized using an options object that does not match the API schema 🥐 해결 방법 1. npm install http-proxy-middleware --save 설치 2. src 폴더 밑에 setupProxy.js 파일 만들기 const { createProxyMiddleware } = require('http-proxy-middleware'); module.exports = function(app) { app.use( '/api', createProxyMiddleware({ target: 'http://localhost:8080', changeOrigin: ..
2023.04.17