问题描述
打开接手的一个项目中发现背景图不显示,F12后发现路径被解析成了
css background: url(/abc\imgs\background.jpg) no-repeat center;

手动在浏览器中把反斜杠改为斜杠图片正常显示
css background: url(/abc/imgs/background.jpg) no-repeat center;

查看代码,代码中写的是

	background: url(./abc/background.jpg) no-repeat center;

所以可以知道图片不显示就是反斜杠的问题了。
.
.
.

找资料后得到解决方法:
在vue.config.js中找到webpackConfig的配置,其中有一个对图片的配置,找到options中的name属性,只用posix;

	//修改前: 
	 name: path.join(assetsPath, 'img/[name].[hash:8].[ext]')
	//修改后:
	name: path.posix.join(assetsPath, 'img/[name].[hash:8].[ext]')
Logo

前往低代码交流专区

更多推荐