코드보면
app.use('/api/users',users);
와 같이 회원가입 정보나 그런것들을 proxy를 통해 얻고 있었습니다. 그 상태에서 socket io를 동시에 사용하고싶어 app.js에 위와같이 설정했는데 오류가 떠서 질문드립니다.
제 vue.config.js는
var path = require("path")
module.exports = {
publicPath : '',
devServer : {
proxy : { // proxyTable 설정
'/api' : {
target : 'https://구름ide에서 만든 3000번 포트주소.run.goorm.io/api',
changeOrigin : true,
pathRewrite : {
'^/api' : ''
},
secure:false,
logLevel: 'debug'
}
},
disableHostCheck : true,
},
outputDir : path.resolve(__dirname, "../server/public/"),
}
로 설정이 되어있었습니다