From 1ced0456cae252a54711a325692c261f8ec293cd Mon Sep 17 00:00:00 2001 From: zcodes Date: Fri, 29 Jul 2016 22:02:50 +0800 Subject: [PATCH] Fixed fontawesome relative path If install flarum in the site's root directory, it seems nothing is wrong because the server software will trim the path, but if install flarum in a sub directory, the font file of fontawesome will not load correctly. --- less/lib/lib.less | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/less/lib/lib.less b/less/lib/lib.less index 45396ecd3..55e6e0e7a 100755 --- a/less/lib/lib.less +++ b/less/lib/lib.less @@ -1,5 +1,5 @@ @import "font-awesome.less"; -@fa-font-path: "../../assets/fonts"; +@fa-font-path: "../assets/fonts"; @import "normalize.less"; @import "print.less";