modified: .gitignore
This commit is contained in:
@@ -1,11 +1,28 @@
|
||||
import { createApp, h } from 'vue'
|
||||
import { createInertiaApp } from '@inertiajs/vue3'
|
||||
import { createInertiaApp, router } from '@inertiajs/vue3'
|
||||
import {createPinia} from "pinia";
|
||||
import {setupNaiveDiscreteApi} from "./Plugins/NaiveUI.js";
|
||||
import * as Sentry from "@sentry/vue";
|
||||
import {startGlobalLoading, stopGlobalLoading} from "./Composables/useGlobalLoading.js";
|
||||
import './bootstrap';
|
||||
import '../css/app.css';
|
||||
|
||||
router.on('start', () => {
|
||||
startGlobalLoading()
|
||||
})
|
||||
|
||||
router.on('finish', () => {
|
||||
stopGlobalLoading()
|
||||
})
|
||||
|
||||
router.on('invalid', () => {
|
||||
stopGlobalLoading()
|
||||
})
|
||||
|
||||
router.on('exception', () => {
|
||||
stopGlobalLoading()
|
||||
})
|
||||
|
||||
|
||||
createInertiaApp({
|
||||
id: 'onboard',
|
||||
|
||||
Reference in New Issue
Block a user