https://github.com/charlesfries/ember-google-fonts
Automatically import Google Fonts into your Ember app
https://github.com/charlesfries/ember-google-fonts
ember ember-addon google google-fonts
Last synced: 4 months ago
JSON representation
Automatically import Google Fonts into your Ember app
- Host: GitHub
- URL: https://github.com/charlesfries/ember-google-fonts
- Owner: charlesfries
- License: mit
- Created: 2019-10-21T20:09:16.000Z (over 6 years ago)
- Default Branch: master
- Last Pushed: 2022-12-11T10:18:12.000Z (over 3 years ago)
- Last Synced: 2025-04-03T03:45:40.003Z (about 1 year ago)
- Topics: ember, ember-addon, google, google-fonts
- Language: JavaScript
- Homepage:
- Size: 840 KB
- Stars: 0
- Watchers: 0
- Forks: 0
- Open Issues: 20
-
Metadata Files:
- Readme: README.md
- Contributing: CONTRIBUTING.md
- License: LICENSE.md
Awesome Lists containing this project
README
ember-google-fonts
==============================================================================
Automatically import Google Fonts into your Ember application.
This addon will add a `` tag to the `content-for "head-footer"` target in your app's `index.html` file.
Compatibility
------------------------------------------------------------------------------
* Ember.js v3.4 or above
* Ember CLI v2.13 or above
* Node.js v8 or above
Installation
------------------------------------------------------------------------------
```
ember install ember-google-fonts
```
Usage
------------------------------------------------------------------------------
```javascript
// config/environment.js
module.exports = function(environment) {
let ENV = {
/* your config */
googleFonts: [
'Merriweather:400,700,900',
'Roboto'
]
};
return ENV;
}
```
Contributing
------------------------------------------------------------------------------
See the [Contributing](CONTRIBUTING.md) guide for details.
License
------------------------------------------------------------------------------
This project is licensed under the [MIT License](LICENSE.md).