I am trying to pack my spring boot webservice and angular 6 app in an war so it can be deployed in WAS 8.5 server.
I have made a sample app on angular and did "ng build --prod".
Then followed this answer Is it possible to deploy Angular app on IBM Websphere Application Server? .
I have copied output of /dist folder of the angular app to web module and added web.xml.

<web-app xmlns="http://xmlns.jcp.org/xml/ns/javaee" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://xmlns.jcp.org/xml/ns/javaee http://xmlns.jcp.org/xml/ns/javaee/web-app_3_1.xsd"
version="3.1">
<display-name>Spring Boot Liberty</display-name>
<welcome-file-list>
<welcome-file>index.html</welcome-file>
</welcome-file-list>
After I tried to deploy the war and display the page,it is giving blank page. backend rest service is working fine.So I am probably missing some library or some files to run the angular js part or may be some other step.
Please help.