[GDPR] Don't use googleapi for loading fonts.
This issue was reported by @sirzento to BlueprintFramework/framework#121.
I don't know where this file is being used exactly but it loads fonts via googleapi and thats something we want to prevent inside the EU because of GDPR reasons. (Random site that explains a bit about google fonts and GDPR)
File: https://github.com/BlueprintFramework/framework/blob/ffeb5d092a52fc981085c750f2f13c239296d49e/resources/views/templates/wrapper.blade.php
Code:
<style> @import url('//fonts.googleapis.com/css?family=Rubik:300,400,500&display=swap'); @import url('//fonts.googleapis.com/css?family=IBM+Plex+Mono|IBM+Plex+Sans:500&display=swap'); </style>
Issue refers to the following code in the pterodactyl/panel repository and applies to the client view wrapper: https://github.com/pterodactyl/panel/blob/ccea09c9d94cba49ae52f9c7348a3f4316ec8068/resources/views/templates/wrapper.blade.php#L34-L37
We'd like to first give our upstream (Pterodactyl) a chance to fix this issue, otherwise we'll go ahead and fix it on our side.