From 475320bde7f47f2be77cf5caaa6e4bd51c410548 Mon Sep 17 00:00:00 2001 From: cade Date: Thu, 9 Apr 2026 09:28:14 +0100 Subject: [PATCH] Moved provider assignments out of AppWrapper.vue and App.vue to simplify boot requirements --- quasar.config.ts | 1 + src/App.vue | 52 +--------------------------------- src/AppWrapper.vue | 13 --------- src/boot/providers.ts | 66 +++++++++++++++++++++++++++++++++++++++++++ 4 files changed, 68 insertions(+), 64 deletions(-) create mode 100644 src/boot/providers.ts diff --git a/quasar.config.ts b/quasar.config.ts index 886cf8f0d..c0dac6ed6 100644 --- a/quasar.config.ts +++ b/quasar.config.ts @@ -16,6 +16,7 @@ export default defineConfig((ctx) => { // --> boot files are part of "main.js" // https://v2.quasar.dev/quasar-cli-vite/boot-files boot: [ + 'providers', 'i18n', // 'axios', 'floating-vue' diff --git a/src/App.vue b/src/App.vue index d5049e349..136f87f96 100644 --- a/src/App.vue +++ b/src/App.vue @@ -16,53 +16,25 @@