We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 82fef47 commit 4dc1a67Copy full SHA for 4dc1a67
apps/web/src/lib/constants.ts
@@ -1,19 +1,6 @@
1
import dynamic from 'next/dynamic';
2
3
-export const baseURL = (() => {
4
- // Preview deployments
5
- if (process.env.VERCEL_ENV === 'preview') {
6
- return `https://${process.env.VERCEL_URL}`;
7
- }
8
-
9
- // Production URL
10
- if (process.env.NEXT_PUBLIC_VERCEL_URL) {
11
- return `https://${process.env.NEXT_PUBLIC_VERCEL_URL}`;
12
13
14
- // Local development
15
- return 'http://localhost:3000';
16
-})();
+export const baseURL = process.env.NEXT_PUBLIC_VERCEL_URL;
17
18
export type ToolState = 'available' | 'installed' | 'configured';
19
0 commit comments