dev에서는 image 등 정적 자원을 /static으로, proc에서는 /assets 으로 바라볼 때 dev가 개발 서버를 바라보도록 하려면
다음과 같이 config/index.js에서
// Paths
assetsSubDirectory: 'static',
assetsPublicPath: '/',
proxyTable: {
'/assets': {
target: 'http://localhost:9000',
changeOrigin: true
}
},
와 같이 proxyTable을 설정해준다.
'코딩 > Vue.js' 카테고리의 다른 글
Invalid prop `children` supplied to `TableCell` (0) | 2019.02.11 |
---|---|
vue에서 운영 빌드 시 파일명 해시 없애기, 특정 파일 덮어쓰기, 환경 별 변수 (0) | 2018.07.05 |
vue 운영 빌드 (0) | 2018.07.05 |
Play에 vue 파일들을 넣어 로컬에 띄웠는데 빈 페이지만 보일때 (0) | 2018.07.05 |