我昨天开始使用光滑的网格,我不知道如何解决或最简单的事情是什么。我的应用层次结构:
- production
- index.html
- build.css
- img <- images are here
- src
- assets
- css <- here are my css
- img <- here are my images
- vendor
- SlickGrid/css/smoothness/
- images <- images for slickgrid
- jquery-ui.....css <- this is the css for the slickgrid
现在构建过程将在一个名为 build css 的大 css 中编译所有 css 并将 img 文件夹复制到生产。
问题是 slickgrid 中提供的 jquery-ui.....css 对图像的引用不同。例如,如果有一个名为sexy
the的图像,slickgrid.css
将这样调用它:images/sexy
而不是 required: img/sexy
;
实际上,优化将路径更改为image/sexy
to的示例../../vendor/SlickGrid/css/smoothness/images/sexy
。
我该如何解决?谢谢