From d98a4f5e7df0a76be2444655af5bbd7783c73c44 Mon Sep 17 00:00:00 2001 From: "Anthony Fu (via agent)" Date: Fri, 17 Jul 2026 04:15:09 +0000 Subject: [PATCH] fix(examples): files-inspector opts out of the dev-server auth gate The standalone dev server gates with interactive auth by default since the simple-auth fallback landed; the files-inspector example (and the e2e suite driving it) is a single-user localhost demo, so it opts out like streaming-chat already does. Fixes the failing files-inspector e2e specs on main. --- examples/files-inspector/src/devframe.ts | 3 +++ 1 file changed, 3 insertions(+) diff --git a/examples/files-inspector/src/devframe.ts b/examples/files-inspector/src/devframe.ts index 2c87066a..fad47d23 100644 --- a/examples/files-inspector/src/devframe.ts +++ b/examples/files-inspector/src/devframe.ts @@ -19,6 +19,9 @@ export default defineDevframe({ command: 'devframe-files-inspector', port: 9876, distDir, + // Single-user localhost demo (and e2e target): skip the trust handshake + // the standalone dev server now gates with by default. + auth: false, }, spa: { loader: 'none' }, setup(ctx) {