diff --git a/src/module.ts b/src/module.ts index 752bc204..e70fb3ba 100644 --- a/src/module.ts +++ b/src/module.ts @@ -30,17 +30,15 @@ export interface ModuleOptions { /** * Configure Content Security Policy for Nuxt UI - * @defaultValue `{ nonce: false }` + * @defaultValue `{ nonce: '' }` * @link https://ui.nuxt.com/getting-started/installation/nuxt#csp */ csp?: { /** * Enable nonce for inline styles. - * Set to `true` to automatically generate and use a nonce. - * Provide a string to use a specific nonce. - * @defaultValue `false` + * @defaultValue `` */ - nonce?: boolean | string + nonce?: string } /**