-
Notifications
You must be signed in to change notification settings - Fork 202
Open
Labels
Description
Hi !
I figured out, by reading the source, why my presentation was not working :
I needed to include fonts within my presentation. I found in the source that css's url(..) is parsed by hovercraft, and the target is added to the build. But in my case, the url(..) was in a script that was imported using @import url(...);
The solution was simple : I stopped using @import and imported the css directly from my presentation.
I think the doc should mention the fact that files pointed by CSS's url(..) can be used if not nested. Or better : enhance hovercraft to include nested CSS's.