Fixes #193: Allowing plug overrides

This commit is contained in:
Zef Hemel
2023-08-20 19:54:31 +02:00
parent 136682ebd3
commit 2a10d50094
9 changed files with 146 additions and 40 deletions
+3 -1
View File
@@ -1,3 +1,4 @@
import { Manifest } from "../common/manifest.ts";
import { AppCommand } from "./hooks/command.ts";
export type PageMeta = {
@@ -33,9 +34,10 @@ export type PanelMode = number;
export type BuiltinSettings = {
indexPage: string;
customStyles?: string;
plugOverrides?: Record<string, Partial<Manifest>>;
// Format: compatible with docker ignore
spaceIgnore?: string;
customStyles?: string;
};
export type PanelConfig = {