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
Not sure if this is a bug or intended operation, but Inline appears to ignore script tags with type="module", for example:
type="module"
<script type="module" src="src.df4b993c.js"></script>
The output in the inlined file is lets the script tag pass through verbatim.
If I remove the type="module" then the JavaScript code is inlined correctly.
The text was updated successfully, but these errors were encountered:
Try this change
file js.js line 18
if (type && type.toLowerCase() !== 'text/javascript') { debug('skipping %s', type); return false; }
PR #226
Sorry, something went wrong.
@fsicre that works when I hack it into my local version of inliner.
Thanks, hope you PR gets accepted soon!
Can confirm!
No branches or pull requests
Not sure if this is a bug or intended operation, but Inline appears to ignore script tags with
type="module"
, for example:The output in the inlined file is lets the script tag pass through verbatim.
If I remove the
type="module"
then the JavaScript code is inlined correctly.The text was updated successfully, but these errors were encountered: