Relative path or subdirectory with Laravel 11 vite
In Laravel 11 with vite I am loading a font in my .scss file: src:url("../fonts/my-font.eot"); Vite build this into this css: src:url(/build/assets/my-font.eot); How can I tell vite to create relative URLs like: src:url(./my-font.eot); Absolute path would be fine to, if…