Merge pull request #62 from pidario/feat/dcc-support

start of DCC implementation
This commit is contained in:
Ken-Håvard Lieng 2020-05-19 10:44:07 +02:00 committed by GitHub
commit 63afd839be
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
13 changed files with 358 additions and 1 deletions

View file

@ -10,4 +10,8 @@ precacheAndRoute(self.__WB_MANIFEST, {
});
const handler = createHandlerBoundToURL('/');
registerRoute(new NavigationRoute(handler));
registerRoute(
new NavigationRoute(handler, {
denylist: [new RegExp('/downloads/')]
})
);