18 lines
326 B
TypeScript
Raw Normal View History

2024-09-26 01:05:18 +05:00
import App from "@/App.vue";
import { createApp } from "vue";
import { createPinia } from "pinia";
import { devel, router, client } from "@";
2024-09-26 01:05:18 +05:00
client.setConfig({
baseURL: devel ? "http://localhost:54605" : "/",
2024-09-26 01:05:18 +05:00
withCredentials: true,
});
createApp(App)
.use(createPinia())
.use(router)
.mount('#app');