From 8b3b5cd77a2d815cd89b8d6e740d16aacedabe0e Mon Sep 17 00:00:00 2001 From: Sped0n Date: Wed, 12 Nov 2025 16:54:35 +0800 Subject: [PATCH] fix: use absolute URL for fw font in scss Signed-off-by: Sped0n --- assets/scss/_core/_font.scss | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/assets/scss/_core/_font.scss b/assets/scss/_core/_font.scss index b07a491..9b41a0a 100644 --- a/assets/scss/_core/_font.scss +++ b/assets/scss/_core/_font.scss @@ -11,7 +11,7 @@ @font-face { font-family: 'FW'; - src: url('/lib/fonts/fw.woff2') format('woff2'); + src: url('{{- "lib/fonts/fw.woff2" | absURL -}}') format('woff2'); font-weight: 400; font-style: normal; font-display: swap;