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"] }