0
test.js는
console.log(require('./../images/xxx.png'));
// images/xxx.png
// correct should be ../images/xxx.png
내가
webpack.config.js 필요에 의해 또는 로더 웹팩 발생하는 문제를 모르는 올바르지 않은 이미지 경로를 필요로
output : {
path : path.join(__dirname,'public'),
publicPath : '/public/'
}
{
test: /\.(png|jpg)$/,
loaders: ['url?limit=8192&&name=images/[name].[ext]&context=./public/']
}
로더 업데이트
loaders: ['url?limit=8192&&name=../images/[name].[ext]&context=./public/']
console.log(require('./../images/xxx.png'));
// It's correct ../images/xxx/png.
// But image will not in public/images folder
간단히 '../images/xxx.png'해 보셨습니까? –
@MichaelPratt 예, 시도했습니다 이미지를 성공적으로 표시 할 수 있지만 이미지 폴더에 아무 것도 없습니다 – mqliutie
@MichaelPratt 마지막으로 publicPath를 '../'로 수정했습니다. – mqliutie