15 lines
547 B
TypeScript
15 lines
547 B
TypeScript
import { boot } from 'quasar/wrappers';
|
|
import { Loading } from 'quasar';
|
|
//import DarkCircularProgress from 'components/loading/DarkCircularProgress.vue';
|
|
|
|
// "async" is optional;
|
|
// more info on params: https://quasar.dev/quasar-cli/cli-documentation/boot-files#Anatomy-of-a-boot-file
|
|
export default boot(() => {
|
|
Loading.setDefaults({
|
|
// eslint-disable-next-line @typescript-eslint/ban-ts-comment
|
|
// @ts-ignore
|
|
// spinner: DarkCircularProgress,
|
|
// TODO : Das funktioniert wohl erstmal nicht mehr... gibt ne exception
|
|
});
|
|
});
|