作者:guanchunlei | 来源:互联网 | 2022-02-26 04:35
vue-cli写完的静态页面我们在node环境中引入没有问题,但是打包后放在Apache环境下,路径却有问题了
如一个简单css语句
.welcome { width: 420px; height: 235px; background: url(../img/welcome.jpg) 0 0 no-repeat;
但是打包后路径成了却出现404访问不到的问题。
解决的办法很简单
build路径下utils.js文件
// Extract CSS when that option is specified
// (which is the case during production build)
if (options.extract) {
return ExtractTextPlugin.extract({
use: loaders,
fallback: 'vue-style-loader',
publicPath:'../../' //添加此代码!!!
})
} else {
return ['vue-style-loader'].concat(loaders)
}
以上这篇解决vue打包css文件中背景图片的路径问题就是小编分享给大家的全部内容了,希望能给大家一个参考,也希望大家多多支持。