We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b46d6d3 commit 461a5b0Copy full SHA for 461a5b0
src/client/app/composables/head.ts
@@ -87,7 +87,7 @@ function createHeadElement([tag, attrs, innerHTML]: HeadConfig) {
87
if (innerHTML) {
88
el.innerHTML = innerHTML
89
}
90
- if (tag === 'script' && !attrs.async) {
+ if (tag === 'script' && attrs.async == null) {
91
// async is true by default for dynamically created scripts
92
;(el as HTMLScriptElement).async = false
93
0 commit comments