Skip to content

Commit

Permalink
Add default value for RFC
Browse files Browse the repository at this point in the history
  • Loading branch information
xno-miner committed Aug 28, 2024
1 parent d296a84 commit f27d1d7
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 @@ -29,7 +29,7 @@ export const esBuildContext: esbuild.BuildOptions = {
SUPABASE_STORAGE_KEY: generateSupabaseStorageKey(),
commitHash: execSync(`git rev-parse --short HEAD`).toString().trim(),
NODE_ENV: process.env.NODE_ENV || "development",
IS_RFC: JSON.parse(process.env.RFC!)
IS_RFC: JSON.parse(process.env.RFC ?? "false")
}),
};

Expand Down

0 comments on commit f27d1d7

Please sign in to comment.