Skip to content

Commit

Permalink
Fix logic error when building
Browse files Browse the repository at this point in the history
  • Loading branch information
philip-linaro committed Dec 12, 2024
1 parent 7cbda25 commit 0e1f984
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions astro.config.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,8 @@ const { IS_PUBLIC, PRE_BUILD, CUSTOM_DOMAIN } = loadEnv(
process.cwd(),
""
);
const is_public = true // IS_PUBLIC === "true"
const is_pre_build = true // PRE_BUILD === "true"
const is_public = IS_PUBLIC === "true"
const is_pre_build = PRE_BUILD === "true"

// https://astro.build/config
export default defineConfig({
Expand Down

0 comments on commit 0e1f984

Please sign in to comment.