> ## Documentation Index
> Fetch the complete documentation index at: https://v0.x-docs.novu.co/llms.txt
> Use this file to discover all available pages before exploring further.

# Integrate Novu with Nuxt

Novu Framework works out of the box with Nuxt.js. You can use the `@novu/framework/nuxt` package to serve your Bridge endpoint in your Nuxt.js application.

For a boilerplate project with Vue Email, view: [Nuxt.js Boilerplate](https://github.com/novuhq/novu-framework-nuxt-example/)

<CodeGroup>
  ```ts API Routes theme={null}
  import { serve } from "@novu/framework/nuxt";
  import { myWorkflow } from "../workflows";

  export default defineEventHandler(serve({ workflows: [myWorkflow] }));
  ```
</CodeGroup>

Check out a comprehensive [guide on sending notifications in Nuxt with Vuemail](/guides/framework-guides/framework-nuxt-vuemail).
