Refused to load the font 'URL' because it violates the following Content Security Policy directive: "default-src 'self' ". Note that 'font-src' was not explicitly set, so 'default-src' is used as a fallback. code example

Example 1: Refused to load the font '' because it violates the following Content Security Policy directive: "default-src 'none'". Note that 'font-src' was not explicitly set, so 'default-src' is used as a fallback.

<meta http-equiv="Content-Security-Policy" content="default-src 'self'; font-src 'self' data: fonts.gstatic.com;">

Example 2: because it violates the following Content Security Policy directive: "default-src 'none'". Note that 'font-src' was not explicitly set, so 'default-src' is used as a fallback

devServer: {

        historyApiFallback: true
    }
};

Tags:

Misc Example