Hi
@BeReal,
There may be some issue with permissions on the server in generations of static files. And make sure that you have ". htaccass" file in pub/static folder.
Try the following command to setup proper permission to magento directory.
find . -type d -exec chmod 755 {} \; && find . -type f -exec chmod 644 {} \; && chmod u+x bin/magento
After it run the following magento commands in the sequence.
Upgrade and compile command are optional.
chmod -R 0777 var/ pub/ generated/
rm -rf var/cache/* var/view_preprocessed/* generated/* pub/static/*
php bin/magento setup:upgrade
php bin/magento setup:di:compile
php bin/magento setup:static-content:deploy -f
php bin/magento cache:flush
php bin/magento indexer:reindex
chmod -R 0777 var/ pub/ generated/
I hope it will help you!