Another "oddball" moment...
I'm trying to add a custom font on a test site using the below CSS
/* poppins-regular - latin */
@font-face {
font-family: 'Poppins';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url('/fonts/poppins-v15-latin-regular.eot'); /* IE9 Compat Modes */
src: local(''),
url('/fonts/poppins-v15-latin-regular.woff2') format('woff2'), /* Super Modern Browsers */
url('/fonts/poppins-v15-latin-regular.woff') format('woff'), /* Modern Browsers */
url('/fonts/poppins-v15-latin-regular.ttf') format('truetype'), /* Safari, Android, iOS */
}
But all I get is a 404 for each one. The files also exist in /public/assets/fonts
so I'm not sure why Flarum can't see them
Any ideas ?
Thanks