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
[non-js-imports] Relative URLs in CSS cannot be properly resolved if CSS is imported as style tag
<style>
document.head
<link>
config['non-js-imports'].cssImportTag: 'link'
The text was updated successfully, but these errors were encountered:
[non-js-imports] Issue #440 Adjust the default value of cssImportTag …
078d007
…to link
No branches or pull requests
[non-js-imports] Relative URLs in CSS cannot be properly resolved if CSS is imported as style tag
Root Cause
<style>
tag is appended todocument.head
, the base URL is set as the entry page, which is different from the base URL for the imported CSSWorkaround
<link>
tag instead atconfig['non-js-imports'].cssImportTag: 'link'
The text was updated successfully, but these errors were encountered: