Devendra174's picture
Upload folder using huggingface_hub
1e92f2d verified
raw
history blame
451 Bytes
import { createApp } from 'vue'
import { VueQueryPlugin } from '@tanstack/vue-query'
import type { VueQueryPluginOptions } from '@tanstack/vue-query'
import App from './App.vue'
const vueQueryOptions: VueQueryPluginOptions = {
queryClientConfig: {
defaultOptions: {
queries: {
gcTime: 1000 * 60 * 60 * 24,
// staleTime: 1000 * 10,
},
},
},
}
createApp(App).use(VueQueryPlugin, vueQueryOptions).mount('#app')