I am trying to use CSS @font-face in meteor, but for some reason it isn\'t working:
@font-face { font-family: printFailed; src: url(\"../public/
Just use / as everything in public becomes the root directory from the point of view of the web browser:
/
public
@font-face { font-family: printFailed; src: url("/fonts/wlm_print_failed.ttf"), url("/fonts/wlm_print_failed.eot"); }