]>
Commit | Line | Data |
---|---|---|
a7cf03c1 | 1 | const internals = { |
cac85db0 | 2 | version: '1.0.0' |
a7cf03c1 | 3 | }; |
bd8e98d7 | 4 | |
38416066 BB |
5 | /* |
6 | * The main configuration object for the Forum frontend. These values | |
7 | * are calculated during compile time and need to be set in a .env | |
8 | * file, otherwise it won't work. | |
9 | */ | |
10 | ||
852ee620 RBR |
11 | export const supabase = { |
12 | url: import.meta.env.VITE_SUPABASE_URL, | |
13 | key: import.meta.env.VITE_SUPABASE_KEY | |
c1bc5993 RBR |
14 | }; |
15 | ||
a7cf03c1 | 16 | export const version = internals.version; |