web-dave / angular-starter-v2

6 stars 3 forks source link

config ngSW Routing #26

Open web-dave opened 7 years ago

web-dave commented 7 years ago
web-dave commented 7 years ago

.angular-cli.json


{
  ...
  "apps": [
    {
      "root": "src",
      "outDir": "dist",
      "assets": [
        "assets",
        "favicon.ico",
        "ngsw-manifest.json" // <=
      ],
...
web-dave commented 7 years ago

ngsw-manifest.json

{
  "routing": {
    "index": "/index.html",
    "routes": {
      "/": {
        "match": "exact"
      },
      "/books": {
        "match": "prefix"
      },
      "/about": {
        "match": "prefix"
      }
    }
  }
}