feat(frontend): Finish glitch frontend implementation

This commit is contained in:
Jesse Wierzbinski 2024-04-15 08:50:06 -10:00
parent e5e8099883
commit 972ced1f10
No known key found for this signature in database
6 changed files with 348 additions and 26 deletions

View file

@ -121,6 +121,9 @@ export interface Config {
};
frontend: {
/** @default true */
enabled: boolean;
/** @default "http://localhost:3000" */
url: string;
@ -442,6 +445,7 @@ export const defaultConfig: Config = {
},
},
frontend: {
enabled: true,
url: "http://localhost:3000",
glitch: {
enabled: false,