Ember-cli-google-fonts
Lazily add Google Fonts to your Ember application.
This addon will add the fonts declaration to the content-for: head
hook to avoid including these inside the css files.
Addon dummy build is available here: http://damiencaselli.github.io/ember-cli-google-fonts/.
Versions follow Ember 2.x project versioning.
Installation
Install addon
ember install ember-cli-google-fonts
Declare fonts
module.exports = function(environment) {
var ENV = {
googleFonts: [
'Open+Sans:300,400,700',
'Roboto:300'
],
contentSecurityPolicy: {
'font-src': "'self' fonts.gstatic.com",
'style-src': "'self' fonts.googleapis.com"
}
}
return ENV;
}