-
Notifications
You must be signed in to change notification settings - Fork 70
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
bower provided fonts missing in production mode #28
Comments
Nice catch! This is likely due to the CSS files being concatenated and served up from the root path, breaking the relative URLs pointing to the font files. You can try editing the CSS provided by font awesome and have them load the font files using an absolute path: e.g. (I don't know the actually font names and paths so you'll need to change them accordingly) |
I tried editing font-awesome's css just to check what happens, but its seems like the resource isn't getting copied there in production mode.
|
Hmm, I think it's because in production mode the server isn't serving up On Tue, May 20, 2014 at 2:21 PM, nmcclay notifications@github.com wrote:
|
I've been playing around with synth and have found it pretty awesome to do front end prototyping with. One issue I ran into is that if you use bower to load a library like font-awesome it will not properly load the fonts when running synth in production mode. JS and CSS work fine but somehow fonts is getting lost in there.
The text was updated successfully, but these errors were encountered: