ember-cli-static-meta-tags
v0.0.1
Published
An ember-cli add-on to render meta-tags into your index.html file
Downloads
2
Maintainers
Readme
ember-cli-inline-content
An ember-cli add-on to render static meta-tags into your index.html file.
Install
npm install --save-dev ember-cli-meta-tags
compatible with ember-cli >= v0.0.47
Usage
In your app's Brocfile.js, define metaTags options on your app instance
var app = new EmberApp({
metaTags: [
{
"name":"description",
"content":"Ember CLI meta tags!"
}
...
]
});