0

I'm getting Content Security Policy: The page’s settings blocked the loading of a resource at inline (“default-src”). When I try to access login part of my website on live server.

I posted whole source code here

I also tried adding

<meta http-equiv="Content-Security-Policy" content="default-src 'self'">

But it didn't work

Itay Grudev
  • 7,055
  • 4
  • 54
  • 86
karlo292
  • 15
  • 3

1 Answers1

0

Try to add this line completely <meta http-equiv="Content-Security-Policy" content="default-src *; style-src 'self' 'unsafe-inline'; script-src 'self' 'unsafe-inline' 'unsafe-eval' http://www.google.com">

nuser137
  • 401
  • 2
  • 8