mirror of
https://github.com/nuxt/nuxt.git
synced 2024-11-22 21:55:11 +00:00
Merge ba29fc031a
into 9bf8465806
This commit is contained in:
commit
13bcf24cc0
@ -65,7 +65,7 @@ function _defineNuxtModule<
|
||||
|
||||
const optionsDefaults: TOptionsDefaults =
|
||||
module.defaults instanceof Function
|
||||
? module.defaults(nuxt)
|
||||
? await module.defaults(nuxt)
|
||||
: module.defaults ?? <TOptionsDefaults> {}
|
||||
|
||||
let options = defu(inlineOptions, nuxtConfigOptions, optionsDefaults)
|
||||
|
@ -64,7 +64,7 @@ export interface ModuleDefinition<
|
||||
TWith extends boolean,
|
||||
> {
|
||||
meta?: ModuleMeta
|
||||
defaults?: TOptionsDefaults | ((nuxt: Nuxt) => TOptionsDefaults)
|
||||
defaults?: TOptionsDefaults | ((nuxt: Nuxt) => Awaitable<TOptionsDefaults>)
|
||||
schema?: TOptions
|
||||
hooks?: Partial<NuxtHooks>
|
||||
setup?: (
|
||||
|
Loading…
Reference in New Issue
Block a user