From c43dc46d1454188af4ce23edd2f818c6515563f1 Mon Sep 17 00:00:00 2001 From: Yusuf Kandemir Date: Wed, 22 Jan 2025 11:54:18 +0300 Subject: [PATCH] docs(app-vite): update incorrect defineBoot async usage --- docs/src/pages/quasar-cli-vite/boot-files.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/src/pages/quasar-cli-vite/boot-files.md b/docs/src/pages/quasar-cli-vite/boot-files.md index 61030212a3d..0f874225aa2 100644 --- a/docs/src/pages/quasar-cli-vite/boot-files.md +++ b/docs/src/pages/quasar-cli-vite/boot-files.md @@ -67,7 +67,7 @@ You may ask yourself why we need to export a function. This is actually optional // - Good place for import statements, // - No access to router, Pinia instance, ... -export default async defineBoot(({ app, router, store }) => { +export default defineBoot(async ({ app, router, store }) => { // Code here has access to the Object param above, connecting // with other parts of your app;