@dargmuesli/nuxt-vio 14.0.11 → 14.1.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/nuxt.config.ts +2 -2
- package/package.json +1 -1
package/nuxt.config.ts
CHANGED
|
@@ -231,7 +231,7 @@ export default defineNuxtConfig(
|
|
|
231
231
|
'prefetch-src': false as const,
|
|
232
232
|
'report-to': undefined,
|
|
233
233
|
'report-uri': false as const,
|
|
234
|
-
|
|
234
|
+
'require-trusted-types-for': 'script', // csp-evaluator
|
|
235
235
|
sandbox: false as const,
|
|
236
236
|
'script-src': false as const,
|
|
237
237
|
'script-src-attr': false as const,
|
|
@@ -270,7 +270,7 @@ export default defineNuxtConfig(
|
|
|
270
270
|
},
|
|
271
271
|
nitro: {
|
|
272
272
|
experimental: {
|
|
273
|
-
openAPI: true
|
|
273
|
+
openAPI: false, // TODO: set to true (https://github.com/nuxt/content/issues/2839)
|
|
274
274
|
},
|
|
275
275
|
},
|
|
276
276
|
runtimeConfig: {
|
package/package.json
CHANGED