How can I bring Bootstrap's SASS into my Jekyll project so that it will work on GitHub pages?
This is not a duplicate of this question: Adding Bootstrap to Jekyll. That question has little to do with GitHub Pages, and the answers mention using Bower, which I don't think GitHub Pages supports.
This doesn't work:
---
---
// This is at "/assets/css/site.scss"
@import "bootstrap";
I get this error:
File to import not found or unreadable: bootstrap
I have tried bundle add bootstrap
but that doesn't change anything.
I am able to npm install bootstrap
and get Jekyll to pull in needed things from node_modules/bootstrap
per the instructions on this site and it works on my machine, but this isn't a suitable solution for GitHub Pages because GitHub Pages does not use npm
.