Vue — background image path
1 min readSep 24, 2019
- Install url-loader and file-loader
- npm i url-loader -D
- dev로 설치
module.exports ={
{test: /\.(png|jpg|gif)$/i,use: [{loader: 'url-loader',options: {fallback: 'responsive-loader',},},],},
}
vue 에 style css에 background 백그라운드 이미지 주소는 위와같이
이미지로더와 파일로더를 설치해준다.