We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Given input like this
<!DOCTYPE html> <html> <head> <base href="/" /> <meta charset="UTF-8" /> <meta http-equiv="Content-Security-Policy" content=" default-src 'self' 'unsafe-inline'; img-src 'self' https://img.youtube.com; frame-src 'self' https://www.youtube-nocookie.com; connect-src 'self' " /> </head> <body> <div id="app"></div> </body> </html>
Even without using any env variables, just base plugin https links are removed with the output of this
default-src 'self' 'unsafe-inline'; img-src 'self' https: frame-src 'self' https: connect-src 'self'
The text was updated successfully, but these errors were encountered:
Setting compiler: false fixes the issue
compiler: false
Sorry, something went wrong.
No branches or pull requests
Given input like this
Even without using any env variables, just base plugin https links are removed with the output of this
The text was updated successfully, but these errors were encountered: