diff options
| author | horus | 2021-01-21 20:56:37 +0100 |
|---|---|---|
| committer | horus | 2021-01-21 20:56:37 +0100 |
| commit | 399f1f3f7959a4ee8b67e215719815e49c4f23e2 (patch) | |
| tree | 68b2165cf2e52fcc6e5132b64cf4ebea02616a73 /resources | |
| parent | dcf33389529c6d23b798e8104ad215478f4d1b17 (diff) | |
| download | kategorischeraperitif-399f1f3f7959a4ee8b67e215719815e49c4f23e2.tar.gz | |
Replaces hard coded URL with env('APP_URL').
Diffstat (limited to 'resources')
| -rw-r--r-- | resources/views/layouts/base.blade.php | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/resources/views/layouts/base.blade.php b/resources/views/layouts/base.blade.php index 4be7f7a..15e905e 100644 --- a/resources/views/layouts/base.blade.php +++ b/resources/views/layouts/base.blade.php @@ -16,10 +16,10 @@ <link rel='stylesheet' id='theme-styles-css' href='/css/theme.min.css' type='text/css' media='all' /> <link rel='stylesheet' href="/css/open-iconic-bootstrap.css"> - <link rel='preload' href="https://angebote.fuselkoenig.de/css/fonts/charter_regular-webfont.woff" as="font" type="font/woff" crossorigin> - <link rel='preload' href="https://angebote.fuselkoenig.de/css/fonts/charter_bold-webfont.woff" as="font" type="font/woff" crossorigin> - <link rel='preload' href="https://angebote.fuselkoenig.de/css/MaterialIcons-Regular.woff2" as="font" type="font/woff2" crossorigin> - <link rel='preload' href="https://angebote.fuselkoenig.de/fonts/open-iconic.woff" as="font" type="font/woff" crossorigin> + <link rel='preload' href="{{ env('APP_URL') }}css/fonts/charter_regular-webfont.woff" as="font" type="font/woff" crossorigin> + <link rel='preload' href="{{ env('APP_URL') }}css/fonts/charter_bold-webfont.woff" as="font" type="font/woff" crossorigin> + <link rel='preload' href="{{ env('APP_URL') }}css/MaterialIcons-Regular.woff2" as="font" type="font/woff2" crossorigin> + <link rel='preload' href="{{ env('APP_URL') }}fonts/open-iconic.woff" as="font" type="font/woff" crossorigin> <script type='text/javascript' src='/js/jquery.js'></script> <style> |
