Home

Awesome

ember-cli-netlify

<a href="https://shipshape.io/"><img src="http://i.imgur.com/DWHQjA5.png" alt="Ship Shape" width="100" height="100"/></a>

ember-cli-netlify is built and maintained by Ship Shape. Contact us for Ember.js consulting, development, and training for your project.

npm version Download count all time npm Ember Observer Score Build Status

This addon allows you to configure your Netlify headers and redirects.

Compatibility

Installation

ember install ember-cli-netlify

Usage

.netlifyheaders and/or .netlifyredirects

There are a few ways to use this addon. The first one is to define a .netlifyheaders and/or a .netlifyredirects file in the root of your project and this addon will copy the output to dist/_headers and dist/_redirects respectively.

ember-cli-build.js

The second way is to define an ember-cli-netlify hash in your ember-cli-build.js. You can combine these methods, and anything defined in the config hash will be appended to the existing files. Currently, only redirects are supported, not headers.

'ember-cli-netlify': {
  redirects: [
    'https://blog.shipshape.io/* https://shipshape.io/blog/:splat 301!',
    'https://blog.shipshape.io/* https://shipshape.io/blog/:splat 301!'
  ]
}

Using in an addon

The final option, for addon authors, is to declare redirects for ember-cli-netlify during compilation. To do so, you will want to:

Contributing

See the Contributing guide for details.

License

This project is licensed under the MIT License.