Loading of a resource blocked by Content Security Policy
问题 I'm getting the error below in the console of my browser: Content Security Policy: The page’s settings blocked the loading of a resource at http://localhost:3000/favicon.ico (“default-src”). I searched online and saw that this should be fixed with the snippet of code below: <meta http-equiv="Content-Security-Policy" content="default-src *; img-src * 'self' data: https: http:; script-src 'self' 'unsafe-inline' 'unsafe-eval' *; style-src 'self' 'unsafe-inline' *"> I added this to my front-end