Skip to content

Commit 5c7c78a

Browse files
committed
fix empty banned ids causing errors
1 parent 4cd9265 commit 5c7c78a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

astro.config.mjs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ export default defineConfig({
1414
REDIRECT_HOST: envField.string({ context: "server", access: "secret" }),
1515
CLIENT_ID: envField.string({ context: "server", access: "secret" }),
1616
CLIENT_SECRET: envField.string({ context: "server", access: "secret" }),
17-
BANNED_IDS: envField.string({ context: "server", access: "secret" }),
17+
BANNED_IDS: envField.string({ context: "server", access: "secret", default: "" }),
1818
WEBHOOK_URL: envField.string({ context: "server", access: "secret" })
1919
}
2020
},

0 commit comments

Comments
 (0)