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.
- package/README.md +1 -1
- 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 -
|
|
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