img.css 用了一个相对路径
.img { background: url('../images/panel.jpg') }
被合并到主文件,成了这样
.img { background: url(images/panel.jpg) }
请问这个有什么解决的方法吗?