Skip to content

Commit

Permalink
chore!: hardcode
Browse files Browse the repository at this point in the history
  • Loading branch information
yjl9903 committed Jun 11, 2024
1 parent 93ebe0e commit 5fc9f67
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions packages/app/astro.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,8 @@ import Analytics from 'unplugin-analytics/astro';
const SSR_ADAPTER = process.env.SSR_ADAPTER === 'cloudflare' ? 'cloudflare' : 'node';

const APP_HOST = process.env.APP_HOST ?? `garden.onekuma.cn`;
const SERVER_HOST = process.env.SERVER_HOST;
const SERVER_PORT = process.env.SERVER_PORT;
const SERVER_HOST = process.env.SERVER_HOST ?? `api.zeabur.internal`;
const SERVER_PORT = process.env.SERVER_PORT ?? `8080`;
const SERVER_PROTOCOL = process.env.SERVER_PROTOCOL ?? 'http'; // http or https

console.log(`ENV:`, process.env);
Expand Down

0 comments on commit 5fc9f67

Please sign in to comment.