Skip to content

Commit

Permalink
chore: remove app_id and private key env vars from build
Browse files Browse the repository at this point in the history
  • Loading branch information
Keyrxng committed Nov 11, 2024
1 parent 48d5076 commit 905e2ea
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion build/esbuild-build.ts
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ export const esbuildOptions: BuildOptions = {
minify: false,
loader: Object.fromEntries(DATA_URL_LOADERS.map((ext) => [ext, "dataurl"])),
outdir: "static/dist",
define: createEnvDefines(["SUPABASE_URL", "SUPABASE_ANON_KEY", "APP_PRIVATE_KEY", "APP_ID"], {
define: createEnvDefines(["SUPABASE_URL", "SUPABASE_ANON_KEY"], {
SUPABASE_STORAGE_KEY: generateSupabaseStorageKey(),
NODE_ENV: process.env.NODE_ENV || "development",
}),
Expand Down

0 comments on commit 905e2ea

Please sign in to comment.