-
Today I checked on 4 projects where I have laravel backpack they are all on different servers and long loading login window and then switching between sections of admin panel sometimes stop working links inside the admin panel that is clicking on them nothing happens. I noticed this 2 times during half a year |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 2 replies
-
Based on the information provided in the knowledge sources, it appears that slow loading and unresponsive behavior in Backpack admin panels can be caused by various factors. Here are some potential reasons and solutions for the issues you're experiencing:
To troubleshoot further, you could:
If the problem persists after trying these solutions, you may want to open an issue on the Backpack GitHub repository with more detailed information about your setup and the specific problems you're encountering. Relevant sources: Global styles and scripts |
Beta Was this translation helpful? Give feedback.
Also to add, make sure you don't have
Basset
in dev mode in production. In case you do, basset is fetching all the necessary assets everytime a page is loaded.You can make sure that doesn't happen by adding
BASSET_DEV_MODE=false
on your production.env
file.Cheers