Skip to content

Commit fb840ff

Browse files
committed
fix fly deploy
1 parent bfc61e0 commit fb840ff

File tree

2 files changed

+1
-2
lines changed

2 files changed

+1
-2
lines changed

website/app/modules/env.server.ts

-1
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,6 @@ enforceInProd(resendAPIKey, 'RESEND_API_KEY');
3131
const origin = process.env.ORIGIN;
3232
invariant(origin, 'ORIGIN env variable is required');
3333
const port = process.env.PORT;
34-
invariant(port, 'PORT env variable is required');
3534

3635
const lumaAPIKey = process.env.LUMA_API_KEY;
3736
enforceInProd(lumaAPIKey, 'LUMA_API_KEY');

website/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
"type": "module",
66
"scripts": {
77
"typecheck": "tsc",
8-
"build": "remix vite:build",
8+
"build": "bunx --bun remix vite:build",
99
"dev": "NODE_ENV=development TZ=Etc/UTC bun ./server/index.ts",
1010
"profile": "NODE_ENV=development TZ=Etc/UTC bun --inspect ./server/index.ts",
1111
"start": "NODE_ENV=production TZ=Etc/UTC bun ./server/index.ts",

0 commit comments

Comments
 (0)