Basset problem on my project #1050
-
Beta Was this translation helpful? Give feedback.
Answered by
pxpm
Jun 26, 2024
Replies: 1 comment 4 replies
-
Hey @blondie63 And in network tab you can see where is it trying to get those files from ? Cheers |
Beta Was this translation helpful? Give feedback.
4 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Interesting, thanks for the report.
Digging a little bit more I found that the
storage/basset
prefix is hardcoded in the css file. https://github.com/Laravel-Backpack/theme-coreuiv2/blob/10e943a491e1f4ad5fb5e095105dc7a77628f0ec/resources/assets/css/source-sans-pro.css#L14I guess that was a workaround to load those assets inside css and a proper solution was never researched. The fact that you changed the "default" configuration highlighted this problem.
I've created a PR to fix it: Laravel-Backpack/theme-coreuiv2#38
You can test that PR by changing your
composer.json
to:"backpack/theme-coreuiv2": "dev-fix-sans-pro-paths as 1.2.3"
If it fixes it for you let us know, it would help speedin…