mirror of
https://github.com/home-assistant/frontend.git
synced 2025-06-25 19:46:36 +00:00

* Support serving ES6 JS to clients * Make es6 default dir and es5 a special dir * Fix package building * Fix build_frontend script
9 lines
222 B
Cheetah
9 lines
222 B
Cheetah
console.warn('Service worker caching disabled in development');
|
|
self.addEventListener('install', function(event) {
|
|
self.skipWaiting();
|
|
});
|
|
|
|
self.addEventListener('activate', function(event) {
|
|
self.clients.claim();
|
|
});
|