mirror of
https://github.com/versia-pub/server.git
synced 2026-03-13 05:49:16 +01:00
feat(frontend): ✨ Allow usage of glitch-soc as frontend (alpha)
This commit is contained in:
parent
1aacf7d743
commit
ff6a91f916
7 changed files with 81 additions and 1 deletions
|
|
@ -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",
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue