This commit is contained in:
HugoRCD
2025-05-19 11:25:57 +02:00
parent cabad480f9
commit bd75d2d184

View File

@@ -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
}
/**