From 6e224c35ea2dff62b82edfaea17722c853da164b Mon Sep 17 00:00:00 2001 From: Sercan Yemen <117369+srcn@users.noreply.github.com> Date: Sun, 9 Jun 2024 11:02:39 +0300 Subject: [PATCH] Fix: Inline external CSS files. Previous builders had issues with this; they couldn't resolve any URLs in the external files, such as font files. --- angular.json | 2 ++ src/index.html | 5 ----- {public/fonts/inter => src/styles}/inter.css | 6 ++++-- {public => src}/styles/splash-screen.css | 0 4 files changed, 6 insertions(+), 7 deletions(-) rename {public/fonts/inter => src/styles}/inter.css (61%) rename {public => src}/styles/splash-screen.css (100%) diff --git a/angular.json b/angular.json index 07281f93..0cb796cd 100644 --- a/angular.json +++ b/angular.json @@ -45,6 +45,8 @@ "includePaths": ["src/@fuse/styles"] }, "styles": [ + "src/styles/splash-screen.css", + "src/styles/inter.css", "src/@fuse/styles/tailwind.scss", "src/@fuse/styles/themes.scss", "src/styles/vendors.scss", diff --git a/src/index.html b/src/index.html index 72ca7ef3..6de1e20e 100644 --- a/src/index.html +++ b/src/index.html @@ -23,9 +23,7 @@ - - - - - diff --git a/public/fonts/inter/inter.css b/src/styles/inter.css similarity index 61% rename from public/fonts/inter/inter.css rename to src/styles/inter.css index 3294b018..c7d9a7f3 100644 --- a/public/fonts/inter/inter.css +++ b/src/styles/inter.css @@ -4,7 +4,8 @@ font-display: swap; font-style: normal; font-named-instance: 'Regular'; - src: url("Inter-roman.var.woff2?v=3.18") format("woff2"); + src: url('../../public/fonts/inter/Inter-roman.var.woff2?v=3.18') + format('woff2'); } @font-face { @@ -13,5 +14,6 @@ font-display: swap; font-style: italic; font-named-instance: 'Italic'; - src: url("Inter-italic.var.woff2?v=3.18") format("woff2"); + src: url('../../public/fonts/inter/Inter-italic.var.woff2?v=3.18') + format('woff2'); } diff --git a/public/styles/splash-screen.css b/src/styles/splash-screen.css similarity index 100% rename from public/styles/splash-screen.css rename to src/styles/splash-screen.css