banner.jpg

npm version

Getting Started

To install Nuxt CookieFirst Module for your Nuxt Project follow these steps:

  1. Install the dependencies:
npm
npm install nuxt-cookie-first
yarn
yarn install nuxt-cookie-first
pnpm
pnpm install nuxt-cookie-first
  1. Add the module to your nuxt.config.ts
export default defineNuxtConfig({
  modules: ["nuxt-cookie-first"],
});
  1. Add your API Key from CookieFirst
export defalut defineNuxtConfig({
  modules: ["nuxt-cookie-first"],
  cookieFirst: {
    apiKey: process.env.COOKIE_FIRST_API_KEY,
  }
});
✨ That's it! CookieFirst is now set up in your Nuxt Project and works out of the box.