Are you loading index.html via http(s)? If not, that’s probably the issue. You will need a webserver to serve index.html. You can view use your browser’s javascript console to view relevant errors. If you report them back here they will help with debugging.
The forum is a Discourse instance, which is powered by Ruby.
To view the contents of the dist/ folder, I used web server based on Apache (local and real). With .htaccess file (as in php frameworks):
RewriteEngine On
RewriteCond% {REQUEST_FILENAME}! -f
RewriteCond% {REQUEST_FILENAME}! -d
RewriteRule ^ (. *) $ index.html [QSA, L]
Unfortunately, after the change:
RewriteEngine On
RewriteRule ^ index \ .html $ - [L]
RewriteCond% {REQUEST_FILENAME}! -f
RewriteCond% {REQUEST_FILENAME}! -d
RewriteRule (. *) index.html [L]
</ IfModule>
I still do not see anything on the screen (under ember server everything is ok).