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; /**