Bootstrap Dist无法加载Bower

时间:2015-07-19 18:52:09

标签: angularjs twitter-bootstrap bower

我是Yeoman和Angular的新手,我正在尝试为我的应用程序构建一个dist包。

目前在开发中所有依赖项都按预期加载,但是当我运行Grunt和grunt serve:dist时,应用程序会加载,但它无法找到bootstrap.css文件。我尝试了各种不同的解决方案,例如:

  1. 将bower.json文件更改为使用bootstrap:'3.3.4'而不是版本3.3.5
  2. 将overide对象添加到bower.json文件中,如下所示:

     "overrides":{
      "bootstrap":{
         "main":[
            "less/bootstrap.less",
            "dist/css/bootstrap.css",
            "dist/js/bootstrap.js"
         ]
      }
    

    }

  3. 我在index.html文件中尝试了bootstrap.css和bootstrap.min.css文件,如下所示:

  4. enter image description here

    当我运行服务器时,index.html文件正在寻找加载引导程序文件但是出现以下错误:

    无法加载资源:服务器响应状态为404,地址为http://localhost:9000/bower_components/bootstrap/dist/css.bootstrap.css

    我在网上看到了一些关于这个问题的讨论,但是我已经尝试了所有建议的解决方案,但没有运气。

    有人可以对此有所了解吗?

    当我运行grunt服务时,它在开发环境中工作正常 - 但问题出现在生产dist版本中。

    由于

    琳达

0 个答案:

没有答案