@dargmuesli/nuxt-vio 16.0.0 → 16.0.2

Sign up to get free protection for your applications and to get access to all the features.
package/package.json CHANGED
@@ -12,7 +12,7 @@
12
12
  "@nuxtjs/html-validator": "1.8.2",
13
13
  "@nuxtjs/i18n": "9.1.1",
14
14
  "@nuxtjs/seo": "2.0.2",
15
- "@nuxtjs/tailwindcss": "6.13.0",
15
+ "@nuxtjs/tailwindcss": "6.12.2",
16
16
  "@pinia/nuxt": "0.9.0",
17
17
  "@tailwindcss/forms": "0.5.10",
18
18
  "@tailwindcss/typography": "0.5.16",
@@ -101,6 +101,7 @@
101
101
  "build": "pnpm run build:node",
102
102
  "build:node": "nuxt build .playground",
103
103
  "build:static": "nuxt generate .playground",
104
+ "build:static:test": "SITE_URL=https://localhost:3002 pnpm run build:static",
104
105
  "dev": "pnpm run start:dev",
105
106
  "generate": "pnpm run build:static",
106
107
  "lint:fix": "pnpm run lint:js --fix && pnpm run lint:ts --fix && pnpm run lint:style --fix",
@@ -116,5 +117,5 @@
116
117
  "start:static": "serve .playground/.output/public --ssl-cert ./.config/certificates/ssl.crt --ssl-key ./.config/certificates/ssl.key"
117
118
  },
118
119
  "type": "module",
119
- "version": "16.0.0"
120
+ "version": "16.0.2"
120
121
  }
@@ -41,6 +41,10 @@ export const GET_CSP = (siteUrl: string) =>
41
41
  ],
42
42
  'script-src-elem': ['https://*.googletagmanager.com'],
43
43
  },
44
+ {
45
+ // Google Service Worker (https://developers.google.com/tag-platform/tag-manager/web/csp)
46
+ 'frame-src': ['https://www.googletagmanager.com'],
47
+ },
44
48
  {
45
49
  // vio
46
50
  'manifest-src': [`${siteUrl}/site.webmanifest`],