Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
34 changes: 34 additions & 0 deletions docs/app/app.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -135,6 +135,40 @@ export default defineAppConfig({
},
},

assistant: {
enabled: true,
faqQuestions: [
{
category: 'Getting Started',
items: [
'What is Devframe and what problem does it solve?',
'How do I define a devframe and mount it with the Vite adapter?',
],
},
{
category: 'RPC & State',
items: [
'How do I define an RPC function with defineRpcFunction?',
'How does shared state stay in sync between server and client?',
],
},
{
category: 'Adapters',
items: [
'What adapters can one devframe definition run under?',
'How do I build a standalone CLI from a devframe?',
],
},
{
category: 'Hub',
items: [
'How do I compose multiple integrations into a hub?',
'How do I build my own hub UI on top of the hub protocol?',
],
},
],
},

ui: {
colors: {
primary: 'sage',
Expand Down
Loading