@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.
Files changed (2) hide show
  1. package/nuxt.config.ts +2 -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
- // 'require-trusted-types-for': ["'script'"], // csp-evaluator // TODO: wait for trusted type support in vue (https://github.com/vuejs/core/pull/10844)
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
@@ -117,5 +117,5 @@
117
117
  "start:static": "serve .playground/.output/public --ssl-cert ./.config/certificates/ssl.crt --ssl-key ./.config/certificates/ssl.key"
118
118
  },
119
119
  "type": "module",
120
- "version": "14.0.11"
120
+ "version": "14.1.0"
121
121
  }