Make RMO and Sync run in parallel and use the same sources
This commit is contained in:
parent
d7d6888f63
commit
b919472f42
7 changed files with 13 additions and 14 deletions
9
vite/rmo/main.ts
Normal file
9
vite/rmo/main.ts
Normal file
|
|
@ -0,0 +1,9 @@
|
|||
import { createApp } from "vue";
|
||||
import { createHead } from "@vueuse/head";
|
||||
import App from "@/AppRMO.vue";
|
||||
|
||||
const app = createApp(App);
|
||||
const head = createHead();
|
||||
|
||||
app.use(head);
|
||||
app.mount("#app");
|
||||
Loading…
Add table
Add a link
Reference in a new issue