vite-plugin-csp-dev 1.0.6 → 1.0.7

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/README.md +1 -1
  2. package/package.json +1 -1
package/README.md CHANGED
@@ -13,7 +13,7 @@ export default {
13
13
  plugins: [
14
14
  secureHeaders({
15
15
  reportOnly: false, // default: false - Report CSP violations instead of blocking them.
16
- processI18n: false, // default: false - Process i18n.
16
+ processI18n: false, // default: false - Automatically configure vue-i18n to use runtime-only build. Sets alias to `vue-i18n/dist/vue-i18n.esm-browser.js` (dev) or `vue-i18n/dist/vue-i18n.esm-browser.prod.js` (prod).
17
17
  defaultSrc: "'self'", // default: "'self'" - Value for default-src directive in CSP.
18
18
  noncePlaceholder: 'NONCE_PLACEHOLDER', // default: 'NONCE_PLACEHOLDER' - Placeholder replaced by server.
19
19
  xssProtection: '1; mode=block', // default: '1; mode=block' - Value for X-XSS-Protection header.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "vite-plugin-csp-dev",
3
- "version": "1.0.6",
3
+ "version": "1.0.7",
4
4
  "type": "module",
5
5
  "description": "A Vite plugin to add Content Security Policy (CSP) headers to your application in serve mode.",
6
6
  "main": "./dist/index.js",