Take a single favicon source file at public/favicon.png
, and convert to the various formats and sizes required for popular devices and platforms. Also injects the appropriate HTML into your index.html file during the build process.
$ ember install ember-cli-favicon
Just save an image to public/favicon.png
(try to make sure it's at least 256x256). Additional configuration options are supplied in your ember-cli-build.js
file:
// ember-cli-build.js
var app = new EmberApp({
favicon: {
config: {
// these options are passed directly to the favicons module
}
}
});
See the favicons module for details on the available configuration options.