First of all, thank you for providing this amazing repo. It helped me greatly!
While installing jellyfin-tizen on my TV I noticed Jellyfin Web is no longer being built via the npm ci --no-audit command, or at least not generating the built binaries in /dist. This breaks Jellyfin Tizen's build causing, in my case at least, this problem.
This PR addresses this problem by using npm run build:production to build the web client, which places the build artifacts in /dist, as expected.
First of all, thank you for providing this amazing repo. It helped me greatly!
While installing
jellyfin-tizen
on my TV I noticed Jellyfin Web is no longer being built via thenpm ci --no-audit
command, or at least not generating the built binaries in/dist
. This breaks Jellyfin Tizen's build causing, in my case at least, this problem.This PR addresses this problem by using
npm run build:production
to build the web client, which places the build artifacts in/dist
, as expected.I hope this helps other people!