1
0
mirror of https://github.com/comatory/fb2iCal synced 2025-02-12 09:40:36 +01:00
2020-12-15 21:49:15 +01:00

23 lines
383 B
JavaScript

import App from './components/App.svelte'
import * as stores from './stores'
import * as services from './services'
const boot = () => {
services.storageListener.register()
new App({
target: document.querySelector('#root'),
})
if (process.env.NODE_ENV === 'development') {
window._fb2ical = {
...stores,
...services,
}
}
}
export default boot