feat(frontend): Allow usage of glitch-soc as frontend (alpha)

This commit is contained in:
Jesse Wierzbinski 2024-04-15 00:46:19 -10:00
parent 1aacf7d743
commit ff6a91f916
No known key found for this signature in database
7 changed files with 81 additions and 1 deletions

View file

@ -123,6 +123,17 @@ export interface Config {
frontend: {
/** @default "http://localhost:3000" */
url: string;
glitch: {
/** @default false */
enabled: boolean;
/** @default "glitch" */
assets: string;
/** @default [] */
server: string[];
};
};
smtp: {
@ -437,6 +448,11 @@ export const defaultConfig: Config = {
},
frontend: {
url: "http://localhost:3000",
glitch: {
enabled: false,
assets: "glitch",
server: [],
},
},
smtp: {
server: "smtp.example.com",