types: allow unknown config keys in nuxt.config

This commit is contained in:
Pooya Parsa 2021-04-20 14:43:44 +02:00
parent ac9c0b044e
commit 96649cc876
1 changed files with 1 additions and 0 deletions

View File

@ -6,6 +6,7 @@ export interface TypedConfigSchema extends ConfigSchema {
hooks: NuxtHooks,
modules: ModuleInstallOptions[]
buildModules: ModuleInstallOptions[]
[key: string]: any
}
export interface NuxtOptions extends TypedConfigSchema { }