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 37e44be commit 3cf5c3aCopy full SHA for 3cf5c3a
apps/studio/next.config.js
@@ -18,6 +18,11 @@ function getAssetPrefix() {
18
return undefined
19
}
20
21
+ const SUPABASE_ASSETS_URL =
22
+ process.env.NEXT_PUBLIC_ENVIRONMENT === 'staging'
23
+ ? 'https://frontend-assets.supabase.green'
24
+ : 'https://frontend-assets.supabase.com'
25
+
26
return `${SUPABASE_ASSETS_URL}/${process.env.SITE_NAME}/${process.env.VERCEL_GIT_COMMIT_SHA.substring(0, 12)}`
27
28
0 commit comments