-
Notifications
You must be signed in to change notification settings - Fork 52
Bootstrap not being installed correctly #59
Comments
Did you also |
Nope, sure didn't (pretty new to the yeoman thing) I was under the impression that everything was precompiled and ready to roll right out of the gate. Let me delete my bootstrap CDN link and run |
|
Hrm. Go ahead and follow the same steps as above (npm list, steps to repro, and so on) so I can try it out locally. This will turn out to be a lib dependency |
+1 |
Temporary solution can be found in twbs/bootstrap/issues/16663 due to changes in the Bower specification bower/spec/pull/43. For now you need to override the bootstrap main adding the following to your
|
Hours and hours of time and finally solved. Thank God for this thread. A little more context is included below. Thanks everyone for this!! },
} |
After running a vanilla
yo angularfire
(aside from the package.json issue) bootstrap isn't being installed properly. When Igrunt serve
, the app fires, but the style is broken.If I replace the bower-loaded bootstrap
<script src>
files with bootstrap from their CDN, it works fine.Correction: Adding
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.5/css/bootstrap.min.css">
to the<head>
corrects the issueThe text was updated successfully, but these errors were encountered: