index.mjs 375 B

1234567891011121314151617
  1. /*
  2. Copyright 2018 Google LLC
  3. Use of this source code is governed by an MIT-style
  4. license that can be found in the LICENSE file or at
  5. https://opensource.org/licenses/MIT.
  6. */
  7. import {WorkboxSW} from './controllers/WorkboxSW.mjs';
  8. import './_version.mjs';
  9. /**
  10. * @namespace workbox
  11. */
  12. // Don't export anything, just expose a global.
  13. self.workbox = new WorkboxSW();