I have an angular project with html's/CSS/component(.ts files)/service(.ts files). service methods are reading data from .json files in the assets folder(not calling backend).
I am doing a prod build which will generate html's/CSS/javascript files in dist folder.
The problem is generated index.html file is not rendering, displaying blank screen in browser without server(application server). My requirement is to make this HTML work offline.
how can I export standalone html's/CSS/javascripts to work as a offline html from angular project?

ng servefor this