My mirage2 is not building because it is unable to get the bootstrap stylesheets:
error styles/main.scss (Line 16: File to import not found or unreadable: ../vendor/bootstrap-sass-official/assets/stylesheets/bootstrap.
I’ve read this thread: http://dspace.2283337.n4.nabble.com/Mirage-2-td4676411.html and adjusted my git config, but that didn’t help the problem.
Suggestions? Or maybe someone could just point me to the missing files for download, as someone else did in that prior thread?
Thanks,
Shawn
I was able to fix this this. The problem was with my bower repository. Adding a .bowerrc with the following contents fixed it up:
{
"registry": "https://registry.bower.io",
"directory": "wwwroot/lib"
}
As reported in this ticket: https://github.com/bower/bower/issues/2519
Shawn