Search code examples
ember.jsember-cli

How do I rename the index.html file in ember-cli?


I would like to have a different filename then index.html in the /dist folder when I do ember build. Something like main.html would be great.


Solution

  • In your Brocfile.js

    var app = new EmberApp({
        outputPaths: {
            app: {
                html: 'main.html'
            }
        }
    });