You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
On Franklin server everything just works, but when deploying to gitlab, my background heropatterns (svg images inlined into background-image: url(...)) just don't show up.
Inspecting the issue it turns out that something in the pipeline deleted the surrounding quotes. Unbelievable...
So on my local system I have
background-image: url("data:image/svg+xml,...");
which somehow ends up on gitlab pages as
background-image: url(data:image/svg+xml,...);
no surrounding quotes any longer.
Any help is highly appreciated, as this seems to be due to the standard Franklin gitlab pipeline.
The text was updated successfully, but these errors were encountered:
On Franklin server everything just works, but when deploying to gitlab, my background heropatterns (svg images inlined into background-image: url(...)) just don't show up.
Inspecting the issue it turns out that something in the pipeline deleted the surrounding quotes. Unbelievable...
So on my local system I have
which somehow ends up on gitlab pages as
no surrounding quotes any longer.
Any help is highly appreciated, as this seems to be due to the standard Franklin gitlab pipeline.
The text was updated successfully, but these errors were encountered: