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.
In your Brocfile.js
var app = new EmberApp({
outputPaths: {
app: {
html: 'main.html'
}
}
});