forked from parteeksingh24/default-template-example
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathagentuity.config.ts
More file actions
35 lines (32 loc) · 842 Bytes
/
agentuity.config.ts
File metadata and controls
35 lines (32 loc) · 842 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
/**
* Agentuity Configuration
*
*/
import type { AgentuityConfig } from '@agentuity/cli';
import tailwindcss from '@tailwindcss/vite';
export default {
/**
* Workbench (development only)
*
* Visual UI for testing agents during development. Not included in production builds.
* Omit this section to disable. Access at http://localhost:3500/workbench
*/
workbench: {
route: '/workbench',
headers: {},
},
/**
* Vite Plugins
*
* Custom Vite plugins for the client build (src/web/).
* Added after built-in plugins: React, browserEnvPlugin, patchPlugin
*
* Example (Tailwind CSS):
* bun add -d tailwindcss @tailwindcss/vite
* import tailwindcss from '@tailwindcss/vite';
* plugins: [tailwindcss()]
*
* @see https://vitejs.dev/plugins/
*/
plugins: [tailwindcss()],
} satisfies AgentuityConfig;