Same Loading Funkwhale error here after 1.3.3 upgrade (I'm using Nginx).
I've juste two lines in console :
Loading module from “https://****.****.*****/assets/index-f7369c39.js” was blocked because of a disallowed MIME type (“text/html”).
Loading failed for the module with source https://****.****.****/assets/index-f7369c39.js
Edit : solved !
I've found a mistake from doc : https://docs.funkwhale.audio/administrator/upgrade/debian.html
${NGINX_MAX_BODY_SIZE} variable isn't replaced with the following script:
set -a && source /srv/funkwhale/config/.env && set +a
envsubst "`env | awk -F = '{printf \" $%s\", $$1}'`" \
< /etc/nginx/sites-available/funkwhale.template \
> /etc/nginx/sites-available/funkwhale.conf
I've manually fix it in funkwhale,conf
client_max_body_size ${NGINX_MAX_BODY_SIZE}
to
client_max_body_size 500M;
And restarting Nginx/Funkwhale. 🙂