Some checks failed
CI / verify (push) Failing after 1m2s
VueQueryPlugin was mounted but no useQuery/useMutation calls existed, and the noteRouter ts-rest contract was never imported. The callers of api.remanso.space all use plain fetch(), so the three packages (@tanstack/vue-query, @ts-rest/core, @ts-rest/vue-query) and the src/modules/post directory can go.
24 lines
449 B
TypeScript
24 lines
449 B
TypeScript
import "notyf/notyf.min.css"
|
|
import "./styles/app.css"
|
|
import "@/analytics/openpanel"
|
|
|
|
import { createPinia } from "pinia"
|
|
import { createApp } from "vue"
|
|
import { createI18n } from "vue-i18n"
|
|
|
|
import { messages } from "@/locales/message"
|
|
import { router } from "@/router/router"
|
|
|
|
import App from "./App.vue"
|
|
|
|
const i18n = createI18n({
|
|
locale: "en",
|
|
messages
|
|
})
|
|
|
|
createApp(App)
|
|
.use(router)
|
|
.use(i18n)
|
|
.use(createPinia())
|
|
.mount("#app")
|