Skip to content

Get started

Nuxt uHeadless provides a simple wrapper around the uHeadless API while also providing useful composables.

Installation

bash
$ yarn add --dev @uheadless/nuxt
bash
$ npm i -D @uheadless/nuxt
bash
$ bun add @uheadless/nuxt -d

Add module to your nuxt config

ts
// nuxt.config.ts
export default defineNuxtConfig({
  modules: [
    '@uheadless/nuxt',
  ],
})