Added realtime watching capabilites to vite's virtual loaders

This commit is contained in:
Samuel Andert
2023-07-31 09:50:44 +02:00
parent 39071d425e
commit 189857759e
2 changed files with 21 additions and 4 deletions

View File

@ -5,10 +5,10 @@
let isStoreLoaded = false;
$: if (services && services.helloEarthAlert) {
// services.helloEarthAlert.alertMe();
services.helloEarthAlert.alertMe();
}
$: if (services.core) {
// services.core.testAlert();
services.core.testAlert();
}
$: if ($store) isStoreLoaded = true;