Files

Nuxt with eve demo

A Nuxt 4 app with an embedded eve agent, integrated through the eve/nuxt module:

export default defineNuxtConfig({
  modules: ["eve/nuxt"],
});

The agent lives in agent/ (instructions, tools, channels) next to the Nuxt app/ directory. In local development the module starts the eve runtime alongside the Nuxt dev server and proxies same-origin eve endpoints to it.

Run locally

pnpm --filter framework-nuxt dev

Deploy

On Vercel builds the module generates the eve service and its routing in the Build Output config, so no vercel.json is required. See the Nuxt frontend docs for details.