@dargmuesli/nuxt-vio 13.1.10 → 13.1.11

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/package.json CHANGED
@@ -116,5 +116,5 @@
116
116
  "start:static": "serve .playground/.output/public --ssl-cert ./.config/certificates/ssl.crt --ssl-key ./.config/certificates/ssl.key"
117
117
  },
118
118
  "type": "module",
119
- "version": "13.1.10"
119
+ "version": "13.1.11"
120
120
  }
@@ -121,7 +121,7 @@ export const GET_CSP = (siteUrl: string) =>
121
121
  `${siteUrl}/_nuxt/`, // bundle
122
122
  ],
123
123
  'style-src': [
124
- "'nonce-{{nonce}}'",
124
+ "'unsafe-inline'", // TODO: replace with "'nonce-{{nonce}}'" once Sweetalert supports it
125
125
  "'self'", // TODO: `${siteUrl}/_nuxt/`, // bundle
126
126
  ], // TODO: use `style-src-elem` once Playwright WebKit supports it
127
127
  },