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
I'm running this on an index.html generated by angular-cli (ng build):
ng build
let gulp = require('gulp') let inline = require('gulp-inline') gulp.task('inline', async function () { await gulp.src('dist/index.html') .pipe(inline({ base: 'dist/', disabledTypes: 'css, svg, img' })) .pipe(gulp.dest('dist/')); });
Some script tags are created as following: <script src="runtime-es5.1eba213af0b233498d9d.js" nomodule defer>
<script src="runtime-es5.1eba213af0b233498d9d.js" nomodule defer>
But the result looks like that: <script nomodule="defer="></script>
<script nomodule="defer="></script>
The text was updated successfully, but these errors were encountered:
No branches or pull requests
I'm running this on an index.html generated by angular-cli (
ng build
):Some script tags are created as following:
<script src="runtime-es5.1eba213af0b233498d9d.js" nomodule defer>
But the result looks like that:
<script nomodule="defer="></script>
The text was updated successfully, but these errors were encountered: