skip to Main Content

I have been having issues for the past 24hours where my project (Laravel 11/ Backpack 6) are not able to fetch css from CDN. I noticed the issue in both local dev machine and my online staging server. Anyone experiencing the same issue? Any ideas? Seems like a CDN issue..

enter image description here

enter image description here

enter image description here

2

Answers


  1. Chosen as BEST ANSWER

    This issue is indeed related to theme tabler. It can be fixed by uninstalling the theme with:

    composer remove backpack/theme-tabler
    

    and reinstalling it with:

    composer require backpack/theme-tabler
    

  2. I can relate… the CDN is causing the issue. I’m experiencing the slow response. Here is how I solved it by caching it locally.

    Add BASSET_DEV_MODE=false to your .env and run php artisan basset:cache.

    Login or Signup to reply.
Please signup or login to give your own answer.
Back To Top
Search