fix(schema): mark configFile as required in layer type

This commit is contained in:
Daniel Roe 2024-10-16 11:35:26 +01:00
parent e0638856c1
commit 63ea27c004
No known key found for this signature in database
GPG Key ID: 3714AB03996F442B

View File

@ -68,6 +68,7 @@ export type NuxtConfigLayer = ResolvedConfig<NuxtConfig & {
rootDir: ConfigSchema['rootDir'] rootDir: ConfigSchema['rootDir']
}> & { }> & {
cwd: string cwd: string
configFile: string
} }
export interface NuxtBuilder { export interface NuxtBuilder {