[READ-ONLY] Mirror of https://github.com/danielroe/agent-conf-2023. A demo of integrating React, Vite and Nitro for AgentConf 2023. agent-conf.vercel.app/
0

Configure Feed

Select the types of activity you want to include in your feed.

agent-conf-2023 / agent.config.ts
184 B 9 lines
1import { NitroConfig } from 'nitropack' 2import { UserConfig } from 'vite' 3 4interface AgentConfig { 5 nitro?: NitroConfig 6 vite?: UserConfig 7} 8 9export default {} satisfies AgentConfig