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