Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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: 13 days 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 (about 5 years ago)
- Default Branch: master
- Last Pushed: 2022-12-11T10:18:12.000Z (about 2 years ago)
- Last Synced: 2024-10-28T16:54:41.195Z (2 months ago)
- Topics: ember, ember-addon, google, google-fonts
- Language: JavaScript
- Homepage:
- Size: 840 KB
- Stars: 0
- Watchers: 1
- 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 aboveInstallation
------------------------------------------------------------------------------```
ember install ember-google-fonts
```Usage
------------------------------------------------------------------------------```javascript
// config/environment.jsmodule.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).