Code Monkey home page Code Monkey logo

Comments (4)

jelhan avatar jelhan commented on June 2, 2024 1

This seems to be fixed. Wasn't able to reproduce in latest release as well as in current master.

diff --git a/tests/dummy/config/environment.js b/tests/dummy/config/environment.js
index a480928..f2bbac7 100644
--- a/tests/dummy/config/environment.js
+++ b/tests/dummy/config/environment.js
@@ -47,5 +47,10 @@ module.exports = function(environment) {
 
   }
 
+  ENV.contentSecurityPolicy = {
+    'default-src': "'none'",
+    'style-src': ["https://fonts.googleapis.com"],
+  }
+
   return ENV;
 };
$ ember csp-headers
# Content Security Policy Header Configuration
#
# for Apache: Header set Content-Security-Policy-Report-Only "..."
# for Nginx : add_header Content-Security-Policy-Report-Only "...";

default-src 'none'; style-src https://fonts.googleapis.com; script-src 'self'; font-src 'self'; connect-src 'self'; img-src 'self'; media-src 'self';

from ember-cli-content-security-policy.

SlyDave avatar SlyDave commented on June 2, 2024

Rolling back to 0.5.0 also exhibits the same broken behaviour, adding s e l f ' u n a - i; to the end of the style-src meta tag

from ember-cli-content-security-policy.

SlyDave avatar SlyDave commented on June 2, 2024

Work around for now is to set stye-src to a space delimitated string of the elements:

ENV.contentSecurityPolicy {
            'default-src': "'none'",
            'style-src': "'self' 'unsafe-inline' https://fonts.googleapis.com",
}

from ember-cli-content-security-policy.

sandstrom avatar sandstrom commented on June 2, 2024

Thanks @jelhan! I'm closing this. Happy to re-open if this is still an issue.

from ember-cli-content-security-policy.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.