mirror of
https://github.com/transloadit/uppy.git
synced 2026-07-18 09:05:55 +00:00
23 lines
669 B
JavaScript
23 lines
669 B
JavaScript
// eslint-disable-next-line import/no-extraneous-dependencies
|
|
import 'uppy/src/style.scss'
|
|
|
|
import DragDrop from './DragDrop.js'
|
|
import Dashboard from './Dashboard.js'
|
|
|
|
switch (window.location.pathname.toLowerCase()) {
|
|
case '/':
|
|
case '/dashboard.html': Dashboard(); break
|
|
case '/dragdrop.html': DragDrop(); break
|
|
}
|
|
|
|
if ('serviceWorker' in navigator) {
|
|
// eslint-disable-next-line compat/compat
|
|
navigator.serviceWorker
|
|
.register('/sw.js')
|
|
.then((registration) => {
|
|
console.log('ServiceWorker registration successful with scope: ', registration.scope)
|
|
})
|
|
.catch((error) => {
|
|
console.log(`Registration failed with ${error}`)
|
|
})
|
|
}
|