fix(types): vue.configtypes should be optional (#8767)

closes #8766
This commit is contained in:
Daniel Roe 2021-02-05 14:33:26 +00:00 committed by GitHub
parent 1196c17a2a
commit fffb1a19f6
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -6,4 +6,4 @@
import { VueConstructor } from 'vue'
export type NuxtOptionsVueConfiguration = VueConstructor['config']
export type NuxtOptionsVueConfiguration = Partial<VueConstructor['config']>