Getting Started

Devtools

Use the Nuxt PDFMake DevTools panel while developing.

Nuxt PDFMake adds a PDFMake tab to Nuxt DevTools during development.

The panel helps you inspect the module runtime configuration without digging through generated files. It shows configured fonts, estimated embedded font size, whether the API route is enabled, and includes a test PDF generator backed by the module endpoint.

Disable The Panel

Set enableDevtools to false if you do not want the panel registered.

ts

nuxt.config.ts

export default defineNuxtConfig({
  pdfmake: {
    enableDevtools: false,
  },
});

Disabling the panel does not disable PDF generation. It only removes the Nuxt DevTools integration.