Trying to build my Astro site, which uses this template: https://github.com/one-aalam/astro-ink
Unfortunately, when Astro gets around to generate static routes, it gives the error attached.
Perhaps this is because I'm using a custom icon font for the site's logo?
I'd love any help.
#Site doesn't build due to ByteString error
1 messages · Page 1 of 1 (latest)
this was a bug in astro, fixed in [email protected]
from the stacktrace, it seems like its not the same
we ran into this error because we were passing unencoded strings into a header
the way we fixed it was by encoding the header value with encodeURI()
you might want to do the same
At the end I fixed it by deleting public/admin and removing its integration
Something with the theme
the hebrew characters in the project path might be tripping it up
glad you could figure it out
good luck!
Thanks