We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 259e449 commit a387fb2Copy full SHA for a387fb2
package.json
@@ -1,6 +1,6 @@
1
{
2
"name": "nuxt-font-loader",
3
- "version": "2.3.5",
+ "version": "2.3.6",
4
"description": "Simple, modern and lightweight font loader for Nuxt.",
5
"author": "Ivo Dolenc",
6
"license": "MIT",
src/module.ts
@@ -59,7 +59,7 @@ export default defineNuxtModule<ModuleOptions>({
59
}
60
61
62
- head.style?.push({ children: styles })
+ head.style?.push(styles)
63
64
65
if (external) {
@@ -111,7 +111,7 @@ export default defineNuxtModule<ModuleOptions>({
111
)
112
113
114
- if (styles) head.style?.push({ children: styles })
+ if (styles) head.style?.push(styles)
115
116
},
117
})
0 commit comments