I am uisng this command in the following shell script to generate the manifest file.
#!/bin/bash
PATH=$PATH:$(npm bin)
set -x
# Production build
ng build --prod
# merge ngsw-manifest and copy to dist
./node_modules/.bin/ngu-sw-manifest --module src/app/app.routing.ts \
--out dist/ngsw-manifest.json
# Serve
cd dist
http-server
But My Generated manifest file is missing the routing configuration , is there any flag i need to append to it ?
I am uisng this command in the following shell script to generate the manifest file.
But My Generated manifest file is missing the routing configuration , is there any flag i need to append to it ?