File tree 3 files changed +4
-5
lines changed
3 files changed +4
-5
lines changed Original file line number Diff line number Diff line change 1
1
declare const __COMFYUI_FRONTEND_VERSION__ : string
2
2
declare const __SENTRY_ENABLED__ : boolean
3
3
declare const __SENTRY_DSN__ : string
4
+ declare const __ALGOLIA_APP_ID__ : string
5
+ declare const __ALGOLIA_API_KEY__ : string
4
6
5
7
interface Navigator {
6
8
/**
Original file line number Diff line number Diff line change @@ -8,9 +8,6 @@ import { omit } from 'lodash'
8
8
9
9
import { components } from '@/types/comfyRegistryTypes'
10
10
11
- declare const __ALGOLIA_APP_ID__ : string
12
- declare const __ALGOLIA_API_KEY__ : string
13
-
14
11
type SafeNestedProperty <
15
12
T ,
16
13
K1 extends keyof T ,
Original file line number Diff line number Diff line change @@ -183,8 +183,8 @@ export default defineConfig({
183
183
! ( process . env . NODE_ENV === 'development' || ! process . env . SENTRY_DSN )
184
184
) ,
185
185
__SENTRY_DSN__ : JSON . stringify ( process . env . SENTRY_DSN || '' ) ,
186
- __ALGOLIA_APP_ID__ : JSON . stringify ( process . env . VITE_ALGOLIA_APP_ID || '' ) ,
187
- __ALGOLIA_API_KEY__ : JSON . stringify ( process . env . VITE_ALGOLIA_API_KEY || '' )
186
+ __ALGOLIA_APP_ID__ : JSON . stringify ( process . env . ALGOLIA_APP_ID || '' ) ,
187
+ __ALGOLIA_API_KEY__ : JSON . stringify ( process . env . ALGOLIA_API_KEY || '' )
188
188
} ,
189
189
190
190
resolve : {
You can’t perform that action at this time.
0 commit comments