Runtime error when publishing site #52
-
Jekyll version 4.3.2 I have no issue building and serving locally, but when I try to publish through siteleaf (web and CLI) I get the following error:
It seems similar to Viraj's error here: #44 He managed to resolve the issue at the Jekyll community: jekyll/jekyll#9298. The issue apparently there was jekyll-sass-converter-3.0, as detailed in this comment. But I'm not importing any partials with the same name as my master scss file. Running |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
I figured it out. It had to do with incorrect interpolation in a sass script calc() function. https://sass-lang.com/documentation/values/calculations/ what I had:
What I needed to fix:
This took me way too long to figure out. I had to uninstall and reinstall a bunch of gem dependencies to figure out what was going wrong. I still think Siteleaf error handling should be more verbose! |
Beta Was this translation helpful? Give feedback.
I figured it out. It had to do with incorrect interpolation in a sass script calc() function.
https://sass-lang.com/documentation/values/calculations/
what I had:
What I needed to fix:
This took me way too long to figure out. I had to uninstall and reinstall a bunch of gem dependencies to figure out what was going wrong. I still think Siteleaf error handling should be more verbose!