Last active
August 19, 2016 15:01
-
-
Save deanhume/f9d63b75e33ada5d3ca1694579354cc2 to your computer and use it in GitHub Desktop.
Register image beast
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
(global => { | |
'use strict'; | |
importScripts('./imagebeast.min.js'); | |
optimize({ useWebp: false, useXr: true, useSaveData: true, useCache: true }); | |
// Ensure that our service worker takes control of the page as soon as possible. | |
global.addEventListener('install', event => event.waitUntil(global.skipWaiting())); | |
global.addEventListener('activate', event => event.waitUntil(global.clients.claim())); | |
})(self); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment