0.0.1 • Published 9 years ago

ember-cli-static-meta-tags v0.0.1

Weekly downloads
2
License
MIT
Repository
github
Last release
9 years ago

ember-cli-inline-content Build Status

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!"
    }
    ...
  ]
});