Improve service worker (#1353)

* Improve service worker

 - Add new env variable in WebPack "NODE_ENV"
 - Add new service worker for mode dev that permit to by pass response in cache storage
 - Add new WorkAdventure icon

* Remove console.log

* Add service worker file prod and dev
This commit is contained in:
grégoire parant 2021-08-10 22:34:46 +02:00 committed by GitHub
parent 1db2e2aba9
commit 22a46a98ea
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
11 changed files with 55 additions and 1 deletions

View file

@ -201,6 +201,7 @@ module.exports = {
MAX_USERNAME_LENGTH: 8,
MAX_PER_GROUP: 4,
DISPLAY_TERMS_OF_USE: false,
NODE_ENV: "development",
}),
],
} as Configuration & WebpackDevServer.Configuration;