From bd75d2d184b415337fedd41ebb8e49ca05d34951 Mon Sep 17 00:00:00 2001 From: HugoRCD Date: Mon, 19 May 2025 11:25:57 +0200 Subject: [PATCH] up --- src/module.ts | 8 +++----- 1 file changed, 3 insertions(+), 5 deletions(-) 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 } /**