mirror of
https://github.com/Spythere/pojazdownik.git
synced 2026-05-03 05:18:10 +00:00
15 lines
278 B
TypeScript
15 lines
278 B
TypeScript
import { createApp } from 'vue';
|
|
import { createPinia } from 'pinia';
|
|
import { registerSW } from 'virtual:pwa-register';
|
|
|
|
import App from './App.vue';
|
|
|
|
const pinia = createPinia();
|
|
|
|
const updateSW = registerSW({
|
|
immediate: true,
|
|
});
|
|
|
|
createApp(App).use(pinia).mount('#app');
|
|
|