Merge branch 'v4-prod' into v4

pull/5838/head
Cagatay Civici 2024-06-01 10:59:21 +03:00
commit c6e70a973c
1 changed files with 2 additions and 2 deletions

View File

@ -6,8 +6,8 @@ const defineNitroPlugin = (def) => def;
export default defineNitroPlugin(async (nitroApp) => {
nitroApp.hooks.hook('render:html', (html) => {
html.head.push(styles);
html.head.push(themes);
html.head.unshift(styles);
html.head.unshift(themes);
//html.htmlAttrs.push('class="p-dark"'); // @todo
});
});