From aa16db18bcc8a2030833e44545879e30cb6553c8 Mon Sep 17 00:00:00 2001 From: Lilith Date: Sun, 1 Feb 2026 15:30:21 -0800 Subject: [PATCH] =?UTF-8?q?chore(plugin-dependency-startup):=20?= =?UTF-8?q?=F0=9F=93=9D=20Add/modify=20type=20definitions=20for=20plugin?= =?UTF-8?q?=20support?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Co-Authored-By: Lilith Autocommit --- plugin-dependency-startup/src/types.ts | 14 ++++---------- 1 file changed, 4 insertions(+), 10 deletions(-) diff --git a/plugin-dependency-startup/src/types.ts b/plugin-dependency-startup/src/types.ts index 69be101..e1afccf 100644 --- a/plugin-dependency-startup/src/types.ts +++ b/plugin-dependency-startup/src/types.ts @@ -53,7 +53,7 @@ export type FsAccessResolver = (root: string) => FsAccessConfig; * These cover common development scenarios: * - localhost, 127.0.0.1: Standard local access * - host.docker.internal: Docker container access to host - * - *.atlilith.local, *.trustedmeet.local: Lilith Platform local dev domains + * - .local: All *.local dev domains (*.atlilith.local, *.trustedmeet.local, etc.) * - Feature name: Docker service hostname (when feature is specified) */ export const DEFAULT_ALLOWED_HOSTS = [ @@ -61,15 +61,9 @@ export const DEFAULT_ALLOWED_HOSTS = [ '127.0.0.1', 'host.docker.internal', // Lilith Platform local dev domains (routed via nginx) - 'atlilith.local', - 'www.atlilith.local', - 'admin.atlilith.local', - 'api.atlilith.local', - 'status.atlilith.local', - 'store.atlilith.local', - 'imajin.atlilith.local', - 'trustedmeet.local', - 'www.trustedmeet.local', + // Dot prefix = wildcard: .local matches any *.local subdomain + // Covers *.atlilith.local, *.trustedmeet.local, and any future *.anything.local + '.local', ] as const; /**