Skip to content

Commit

Permalink
🔖 2.0.7
Browse files Browse the repository at this point in the history
  • Loading branch information
alexzaganelli committed Feb 12, 2022
1 parent 878a0cc commit 09b35d1
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 4 deletions.
12 changes: 9 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -73,9 +73,15 @@ npm i -S strapi-plugin-email-designer@latest
+ config: {
+ contentSecurityPolicy: {
+ directives: {
+ 'script-src': ['editor.unlayer.com'],
+ 'frame-src': ['editor.unlayer.com'],
+ 'img-src': ['data:', 'cdn.jsdelivr.net', 'strapi.io', 's3.amazonaws.com'],
+ "script-src": ["'self'", "editor.unlayer.com"],
+ "frame-src": ["'self'", "editor.unlayer.com"],
+ "img-src": [
+ "'self'",
+ "data:",
+ "cdn.jsdelivr.net",
+ "strapi.io",
+ "s3.amazonaws.com",
+ ],
+ },
+ },
+ },
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "strapi-plugin-email-designer",
"version": "2.0.6",
"version": "2.0.7",
"description": "Strapi Email designer plugin.",
"homepage": "https://github.com/alexzaganelli/strapi-plugin-email-designer#readme",
"strapi": {
Expand Down

0 comments on commit 09b35d1

Please sign in to comment.