Pterodactyl panel admin is slow #101
-
Hey! I'm having issues installing blueprint... When I install blueprint everything works and good, until opening admin, and then everything is slow, but only in the admin section tho |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
Heya, we a got a few people that have that issue, this issue persists on all blueprint installed Panels and it was already discussed and half solved on the Discord Support Thread. A Solution was to manually change the URL of the boxicons cdn server in the panel files and rebuild it:
replace: with: Note: Not my Message, this was written by Chernyash on Discord. Some people reported that this worked as their Solution. |
Beta Was this translation helpful? Give feedback.
Heya, we a got a few people that have that issue, this issue persists on all blueprint installed Panels and it was already discussed and half solved on the Discord Support Thread.
A Solution was to manually change the URL of the boxicons cdn server in the panel files and rebuild it:
replace:
{!! $blueprint->importStylesheet('https://unpkg.com/boxicons@latest/css/boxicons.min.css') !!}
with:
<link rel="stylesheet" href="{{ asset('assets/css/boxicons.min.css') }}">
Note: Not my Message, this was written by …