From b5d09b24ec9a9737415cbcaec2cd19536c6f5095 Mon Sep 17 00:00:00 2001 From: Asher Gomez Date: Thu, 31 Aug 2023 16:43:15 +1000 Subject: [PATCH] cleanup --- fresh.config.ts | 5 ----- 1 file changed, 5 deletions(-) diff --git a/fresh.config.ts b/fresh.config.ts index dc72a626b..227576c4e 100644 --- a/fresh.config.ts +++ b/fresh.config.ts @@ -1,14 +1,9 @@ // Copyright 2023 the Deno authors. All rights reserved. MIT license. -// import { defineConfig } from "$fresh/server.ts"; import twindPlugin from "$fresh/plugins/twindv1.ts"; import twindConfig from "./twind.config.ts"; import kvOAuthPlugin from "./plugins/kv_oauth.ts"; import { FreshOptions } from "$fresh/server.ts"; -/* export default defineConfig({ - plugins: [twindPlugin(twindConfig), kvOAuthPlugin], -}); */ - export default { plugins: [twindPlugin(twindConfig), kvOAuthPlugin], } as FreshOptions;