Skip to content

Commit

Permalink
fix(app-vite&app-webpack): async support in configure wrapper (fix: #…
Browse files Browse the repository at this point in the history
…17268) (#17291)

fix(app-vite&app-webpack): quasar.config file configure callback should support async #17268
  • Loading branch information
glorat authored Jun 26, 2024
1 parent 27ce4f8 commit cbc6dcc
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion app-vite/types/configuration.d.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { QuasarContext } from "./configuration/context";
import { QuasarConf } from "./configuration/conf";

type ConfigureCallback = (context: QuasarContext) => QuasarConf;
type ConfigureCallback = (context: QuasarContext) => QuasarConf | Promise<QuasarConf>;
2 changes: 1 addition & 1 deletion app-webpack/types/configuration.d.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { QuasarContext } from "./configuration/context";
import { QuasarConf } from "./configuration/conf";

type ConfigureCallback = (context: QuasarContext) => QuasarConf;
type ConfigureCallback = (context: QuasarContext) => QuasarConf | Promise<QuasarConf>;

0 comments on commit cbc6dcc

Please sign in to comment.