@dargmuesli/nuxt-vio 13.1.9 → 13.1.11

Sign up to get free protection for your applications and to get access to all the features.
package/nuxt.config.ts CHANGED
@@ -235,6 +235,7 @@ export default defineNuxtConfig(
235
235
  ssg: {
236
236
  hashStyles: true,
237
237
  },
238
+ strict: true,
238
239
  },
239
240
  seo: {
240
241
  splash: false,
package/package.json CHANGED
@@ -22,7 +22,7 @@
22
22
  "@vuelidate/validators": "2.0.4",
23
23
  "clipboardy": "4.0.0",
24
24
  "dayjs": "2.0.0-alpha.4",
25
- "eslint": "9.5.0",
25
+ "eslint": "9.6.0",
26
26
  "eslint-config-prettier": "9.1.0",
27
27
  "eslint-plugin-compat": "5.0.0",
28
28
  "eslint-plugin-prettier": "5.1.3",
@@ -30,8 +30,8 @@
30
30
  "globals": "15.6.0",
31
31
  "jose": "5.6.2",
32
32
  "nuxt-gtag": "2.0.6",
33
- "nuxt-security": "1.4.3",
34
- "sweetalert2": "11.12.0",
33
+ "nuxt-security": "2.0.0-rc.9",
34
+ "sweetalert2": "11.12.1",
35
35
  "vue-tsc": "2.0.22"
36
36
  },
37
37
  "devDependencies": {
@@ -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.9"
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
  },