Pinafore-Web-Client-Frontend/routes/_utils/asyncModules.js

27 lines
947 B
JavaScript
Raw Normal View History

2018-01-25 18:03:34 +01:00
export const importTimeline = () => import(
2018-01-28 01:35:44 +01:00
/* webpackChunkName: 'Timeline' */ '../_components/timeline/Timeline.html'
2018-01-15 08:24:27 +01:00
).then(mod => mod.default)
2018-01-25 18:03:34 +01:00
export const importIntersectionObserver = () => import(
2018-01-19 16:17:33 +01:00
/* webpackChunkName: 'intersection-observer' */ 'intersection-observer'
)
2018-01-25 18:03:34 +01:00
export const importRequestIdleCallback = () => import(
2018-01-17 09:06:24 +01:00
/* webpackChunkName: 'requestidlecallback' */ 'requestidlecallback'
)
2018-01-25 18:03:34 +01:00
export const importIndexedDBGetAllShim = () => import(
2018-01-19 05:57:15 +01:00
/* webpackChunkName: 'indexeddb-getall-shim' */ 'indexeddb-getall-shim'
2018-02-11 22:46:57 +01:00
)
2018-03-21 17:38:20 +01:00
export const importWebAnimationPolyfill = () => import(
/* webpackChunkName: 'web-animations-js' */ 'web-animations-js'
)
2018-02-11 22:46:57 +01:00
export const importWebSocketClient = () => import(
/* webpackChunkName: '@gamestdio/websocket' */ '@gamestdio/websocket'
2018-02-15 06:51:34 +01:00
).then(mod => mod.default)
2018-02-15 07:02:54 +01:00
export const importDialogs = () => import(
/* webpackChunkName: 'dialogs' */ '../_components/dialog/dialogs.js'
)