aboutsummaryrefslogtreecommitdiff
path: root/src/lib/config/config.ts
blob: efb7deadb7278dbe8b28aa783467d4f5a3e9a178 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
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 apollo = {
	uri: import.meta.env.VITE_APOLLO_SERVER,
	name: 'forum',
	version: internals.version
};

export const version = internals.version;