Skip to content

Commit d98a4f5

Browse files
committed
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.
1 parent 248f3aa commit d98a4f5

1 file changed

Lines changed: 3 additions & 0 deletions

File tree

examples/files-inspector/src/devframe.ts

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,9 @@ export default defineDevframe({
1919
command: 'devframe-files-inspector',
2020
port: 9876,
2121
distDir,
22+
// Single-user localhost demo (and e2e target): skip the trust handshake
23+
// the standalone dev server now gates with by default.
24+
auth: false,
2225
},
2326
spa: { loader: 'none' },
2427
setup(ctx) {

0 commit comments

Comments
 (0)