Configuration

Learn how to configure Docus.

Minimal Module Configuration
export default defineNuxtConfig({
  ...
  cookieFirst: {
      apiKey: "YOUR_API_KEY", //recommended via .env File
  }
  ...
})
Full Module Configuration
export default defineNuxtConfig({
  ...
  cookieFirst: {
      apiKey: "YOUR_API_KEY", //recommended via .env File
      stealthMode: false,
      silentMode: false,
      language: null, 
      resetTabIndex: false
  }
  ...
})
KeyTypeDefaultDescription
apiKeystringnullThe API Key for your Cookie First Banner
stealthModebooleanfalseDeactivates the banner and only enables cookie rendering component
silentModebooleanfalseDeactivates all browser/console information
languagestringnullISO-639-1 Lang code for the banner language. If no langauge is set, the browser language is used.
resetTabIndexbooleanfalseResets the Tab Index of all banner elemments to zero (tabindex=0 | Default is tabindex=1) Useful if you need to get some more lighthouse accessibily score points.