Jekyll site fails only when pushed to GitHub

前端 未结 2 877
春和景丽
春和景丽 2021-01-14 03:14

I am developing a new version of a static website with Jekyll that deployed via Github pages: https://devcampy.com

The repository: https://github.com/gianarb/devcamp

2条回答
  •  孤独总比滥情好
    2021-01-14 04:10

    Your current bootstrap code is incomplete. /node_modules/bootstrap/scss/vendor/_rfs.scss is missing because of a .gitignore rule that prevent any vendor folder to be versioned.

    1. In your .gitignore, replace vendor line by vendor/bundle

    2. run npm install bootstrap to override current version

提交回复
热议问题