Skip to content

Commit

Permalink
docs(app-vite): update incorrect defineBoot async usage
Browse files Browse the repository at this point in the history
  • Loading branch information
yusufkandemir authored Jan 22, 2025
1 parent 65894b0 commit c43dc46
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion docs/src/pages/quasar-cli-vite/boot-files.md
Original file line number Diff line number Diff line change
Expand Up @@ -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;

Expand Down

0 comments on commit c43dc46

Please sign in to comment.