Constantin
Constantin

Reputation: 388

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.

Upvotes: 2

Views: 1276

Answers (1)

usbecko
usbecko

Reputation: 114

In your Brocfile.js

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

Upvotes: 6

Related Questions