]> git.r.bdr.sh - rbdr/forum/blame - src/lib/config/config.ts
Update / use typescript
[rbdr/forum] / src / lib / config / config.ts
CommitLineData
a7cf03c1
RBR
1const internals = {
2 version: '1.0.0'
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
c1bc5993 11export const apollo = {
e7f6de3d 12 uri: import.meta.env.VITE_APOLLO_SERVER,
a7cf03c1
RBR
13 name: 'forum',
14 version: internals.version
c1bc5993
RBR
15};
16
a7cf03c1 17export const version = internals.version;