It is expected that you will deploy everything in the /dist folder to your server, and this will become the root of your http server. And there is a way to simulate this behavior in your local environment. All you need to do is install http-server globally on your system:
npm install http-server -g
then go to the dist folder of your application:
cd myapp/dist
and start the http server:
http-server -o
What is it. You have a built-in ember application running locally in your browser.
Artur smirnov
source share