GX-Bug #65315
Von Till Tepelmann vor fast 5 Jahren aktualisiert
If StyleEdit4 is used there are always Google Fonts load from the Google CDN.
If the URL in StyleEdit4 ist empty no fonts should be loaded over import url() inside the main.min.css
Quick Fix:
change the line in the following file:
src/themes/Honeygrid/styles/system/config/_variables.scss
$gx-font-import-url: "https://fonts.googleapis.com/css?family=Roboto:400,700,300,900" !default;
to
$gx-font-import-url: "" !default;
It can be that the variable inside the file src/themes/Honeygrid/styles/system/config/_variables.scss is not needed anymore because the fonts are download and imported from the styleedit, so every referenz in the file can be deleted.