From fc4332ca09799591701ac4f1219cb1bb86a61c1b Mon Sep 17 00:00:00 2001 From: Guido X Jansen Date: Tue, 26 Nov 2024 15:13:15 +0100 Subject: [PATCH] Keystatic config fix --- keystatic.config.ts | 7 ++----- 1 file changed, 2 insertions(+), 5 deletions(-) diff --git a/keystatic.config.ts b/keystatic.config.ts index 4ef6ae8..75532db 100644 --- a/keystatic.config.ts +++ b/keystatic.config.ts @@ -1,7 +1,6 @@ -import type { Config } from '@keystatic/core'; import { config, fields, collection } from '@keystatic/core'; -const keystaticConfig: Config = { +export default config({ storage: { kind: 'cloud', }, @@ -131,6 +130,4 @@ const keystaticConfig: Config = { }, }), }, -}; - -export default keystaticConfig; +});