Skip to content
This repository has been archived by the owner on Jan 6, 2024. It is now read-only.

dashdashzako/ember-cli-google-fonts

Repository files navigation

ember-cli-google-fonts

Lazily add Google Fonts to your Ember application.


⚠️ this repository isn't maintained any longer ⚠️


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://dashdashzako.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;
}