vuejs2
-
Vue vue.config.js 프록시 404카테고리 없음 2020. 8. 19. 15:44
질문 Vue JS 2 자습서 # 32-HTTP 요청 의 자습서를 vue-resource를 jsonplaceholder.typicode.com 으로 보냅니다. 프록시하지 않으면 CORS 오류가 발생합니다. vue.config.js : module.exports = { devServer: { proxy: { '^/api': { target: 'https://jsonplaceholder.typicode.com', ws: true, changeOrigin: true, pathRewrite: { '^/api': '' } } } } } HTTP 게시 요청 : this.$http.post('/api/posts', { userId: 1, title: this.blog.title, body: this.blog.conte..