From b7caa3e0245bb04e50995a873facbceb84b813ab Mon Sep 17 00:00:00 2001 From: Georgios Kalpakas Date: Fri, 5 May 2017 00:24:53 +0300 Subject: [PATCH] fix(aio): do not route `eplnkr` URLs to / from ServiceWorker --- aio/ngsw-manifest.json | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/aio/ngsw-manifest.json b/aio/ngsw-manifest.json index 1641100f2d..0906b7d65b 100644 --- a/aio/ngsw-manifest.json +++ b/aio/ngsw-manifest.json @@ -17,9 +17,8 @@ "routing": { "index": "/index.html", "routes": { - "/": { - "prefix": true, - "onlyWithoutExtension": true + "/(?!e?plnkr)[^/.]*$": { + "match": "regex" } } }