blob: 9590e888b2961d548c28bdc83f64e3ab5be1cf81 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
const internals = {
version: '1.0.0'
};
/*
* The main configuration object for the Forum frontend. These values
* are calculated during compile time and need to be set in a .env
* file, otherwise it won't work.
*/
export const supabase = {
url: import.meta.env.VITE_SUPABASE_URL,
key: import.meta.env.VITE_SUPABASE_KEY
};
export const version = internals.version;
|