2.16.2 • Published 7 years ago

ember-cli-google-fonts v2.16.2

Weekly downloads
3,649
License
MIT
Repository
github
Last release
7 years ago

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;
}