Skip to content

Commit 6d1bb4f

Browse files
committed
feat(plugins): update default dock options
1 parent 0ac8081 commit 6d1bb4f

3 files changed

Lines changed: 9 additions & 0 deletions

File tree

plugins/inspect/src/index.ts

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -65,6 +65,9 @@ export function createInspectDevframe(options: InspectDevframeOptions = {}): Dev
6565
auth: options.auth ?? false,
6666
},
6767
spa: { loader: 'none' },
68+
dock: {
69+
category: '~builtin',
70+
},
6871
setup(ctx) {
6972
setupInspect(ctx)
7073
},

plugins/messages/src/index.ts

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -63,6 +63,9 @@ export function createMessagesDevframe(options: MessagesDevframeOptions = {}): D
6363
// (Vite/hub) supply their own auth layer and ignore this.
6464
auth: options.auth ?? false,
6565
},
66+
dock: {
67+
category: '~builtin',
68+
},
6669
spa: { loader: 'none' },
6770
setup(ctx) {
6871
setupMessages(ctx)

plugins/terminals/src/index.ts

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -61,6 +61,9 @@ export function createTerminalsDevframe(options: TerminalsOptions = {}): Devfram
6161
auth: false,
6262
},
6363
spa: { loader: 'none' },
64+
dock: {
65+
category: '~builtin',
66+
},
6467
async setup(ctx) {
6568
const { setupTerminals } = await import('./node/index')
6669
await setupTerminals(ctx, options)

0 commit comments

Comments
 (0)