1

我正在使用 Heroku - Yeoman - AngularJS Full-Stack - Bootstrap - NodeJS Stack。

Heroku 上的部署是使用“Grunt build”命令构建的。部署到 Heroku 时,我在网页上呈现 CSS 图像时遇到问题。页面中的任何图像都会显示,但不是来自 CSS 文件。

例如:下面的代码不起作用

CSS

.aboutpage-header
{
    height: 250px;
    background: url('../images/slider-map.jpg') center center no-repeat scroll;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    background-size: cover;
    -o-background-size: cover;
    padding-top: 50px;
}

HTML:

<header class="aboutpage-header">
  <div class="container text-center">
    <div class="row">
      <div class="col-lg-12">
        <h2 class="title">About Us</h2>
        <h2 class="intro"><i class="fa fa-location-arrow"></i>Company<span class="highlight">IT</span>
          are experts in bespoke software development and tailored consulting</h2>
      </div>
    </div>
  </div>
</header>

在本地运行时它工作正常,Grunt serve但一旦它部署在 Heroku 上,CSS 图像就会丢失。

4

1 回答 1

0

正如评论中所建议的,链接应该是:

/assets/images/image.jpg

代替:

../assets/images/image.jpg
于 2015-09-02T18:19:05.183 回答