Dateien in "static" werden immer berücksichtigt

dadurch werden die Font-Dateien immer deployed
daher den Pfad im CSS entsprechend geändert
This commit is contained in:
Ludger Sicking 2025-06-16 16:10:59 +02:00
parent 91096cc4f3
commit a38441bda2
3 changed files with 2 additions and 2 deletions

View file

@ -1,12 +1,12 @@
@font-face {
font-family: 'Roboto Condensed';
src: url('RobotoCondensed-VariableFont_wght.ttf') format('truetype');
src: url('/font/RobotoCondensed-VariableFont_wght.ttf') format('truetype');
font-weight: normal;
font-style: normal;
}
@font-face {
font-family: 'Roboto Condensed Italic';
src: url('RobotoCondensed-Italic-VariableFont_wght.ttf') format('truetype');
src: url('/font/RobotoCondensed-Italic-VariableFont_wght.ttf') format('truetype');
font-weight: normal;
font-style: italic;
}