phartenfeller / sveltekit-1.0-sqlite-demo-app

My demo app of various SvelteKit experiments from my YouTube series.
https://sveltekit-demo.hartenfeller.dev
106 stars 19 forks source link

500 Internal Server Error when generating PDF for example program #4

Closed interlakedev closed 1 year ago

interlakedev commented 1 year ago

Example link: https://sveltekit-demo.hartenfeller.dev/api/album/4/pdf/let-there-be-rock.pdf

phartenfeller commented 1 year ago

Thanks for reporting the issue!

The problem was that the font files were not included in the build.

CleanShot 2023-08-12 at 18 14 01@2x

I fixed this by explicitly providing these assets to the container.

interlakedev commented 1 year ago

Thank you for the quick response!