18 lines
326 B
TypeScript
18 lines
326 B
TypeScript
import App from "@/App.vue";
|
|
|
|
import { createApp } from "vue";
|
|
import { createPinia } from "pinia";
|
|
import { devel, router, client } from "@";
|
|
|
|
|
|
client.setConfig({
|
|
baseURL: devel ? "http://localhost:54605" : "/",
|
|
withCredentials: true,
|
|
});
|
|
|
|
createApp(App)
|
|
.use(createPinia())
|
|
.use(router)
|
|
.mount('#app');
|
|
|