How to access build frontity project from localhost without port

I mean. I can not see index.htm file inside build folder. and I want to access something like this.

localhost/project

and it should run build version app.

Can anyone help me on this??

Hi @sanjeevsetu

Frontity is an isomorphic application. This means that the same codebase runs on both the node server and in the browser. On node the page is server side rendered before the HTML is sent to the client and the client is then hydrated.

Frontity therefore needs a node server in order to run.

Hope this helps.