ember-cli-google-fonts
v2.16.2
Published
Google Fonts support for ember-cli.
Downloads
3,070
Readme
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
// config/environment.js
module.exports = function(environment) {
var ENV = {
/* your config */
googleFonts: [
'Open+Sans:300,400,700',
'Roboto:300'
],
// Set or update content security policies
contentSecurityPolicy: {
'font-src': "'self' fonts.gstatic.com",
'style-src': "'self' fonts.googleapis.com"
}
}
return ENV;
}