From 5702f5e6a87e8c8562eec4be6d88c38c0231f625 Mon Sep 17 00:00:00 2001 From: cp-dharti-r Date: Fri, 8 Mar 2024 12:11:14 +0530 Subject: [PATCH] Remove making object --- website/config.js | 6 +++--- website/tsconfig.json | 2 +- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/website/config.js b/website/config.js index 1741362..7067242 100644 --- a/website/config.js +++ b/website/config.js @@ -1,4 +1,4 @@ -export default Object.freeze({ +export default { SUPABASE_URL: SUPABASE_URL, - SUPABASE_ANON_KEY: SUPABASE_ANON_KEY -}); + SUPABASE_ANON_KEY: SUPABASE_ANON_KEY, +}; diff --git a/website/tsconfig.json b/website/tsconfig.json index 87cc552..74abead 100644 --- a/website/tsconfig.json +++ b/website/tsconfig.json @@ -23,6 +23,6 @@ } ] }, - "include": ["next-env.d.ts", ".next/types/**/*.ts", "**/*.ts", "**/*.tsx"], + "include": ["next-env.d.ts", ".next/types/**/*.ts", "**/*.ts", "**/*.tsx", "config.js"], "exclude": ["node_modules"] }