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 088beaa90b
commit 3bbcd7d218
No known key found for this signature in database
GPG Key ID: 3714AB03996F442B

View File

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