From 1b5a56c5a09155eee383f48b1700018c54af327d Mon Sep 17 00:00:00 2001 From: Thorn Walli Date: Tue, 13 Jun 2023 13:28:43 +0200 Subject: [PATCH] fix(options): added missing default options --- src/utils/options.mjs | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/utils/options.mjs b/src/utils/options.mjs index 8f9014a0e0..7cd93cab96 100644 --- a/src/utils/options.mjs +++ b/src/utils/options.mjs @@ -4,6 +4,8 @@ export function getDefaultOptions() { return { debug: false, + disableNuxtCritters: false, // If set, `@nuxtjs/critters` will not be integrated. + disableNuxtFontaine: false, // If set, `@nuxtjs/fontaine` will not be integrated. disableNuxtImage: false, // If set, `@nuxt/image` will not be integrated. optimizePreloads: true,