27 lines
788 B
TypeScript
27 lines
788 B
TypeScript
import type { NitroApp } from 'nitropack';
|
|
// @ts-expect-error
|
|
import { styles, stylesToTop, themes } from '#primevue-style';
|
|
//import { useRuntimeConfig } from '#imports';
|
|
|
|
type NitroAppPlugin = (nitro: NitroApp) => void;
|
|
|
|
interface NuxtRenderHTMLContext {
|
|
htmlAttrs: string[];
|
|
head: string[];
|
|
bodyAttrs: string[];
|
|
bodyPreprend: string[];
|
|
body: string[];
|
|
bodyAppend: string[];
|
|
}
|
|
|
|
const defineNitroPlugin = (def: NitroAppPlugin): NitroAppPlugin => def;
|
|
|
|
export default defineNitroPlugin(async (nitroApp) => {
|
|
nitroApp.hooks.hook('render:html' as any, (html: NuxtRenderHTMLContext) => {
|
|
html.head.unshift(stylesToTop);
|
|
html.head.push(styles);
|
|
html.head.push(themes);
|
|
//html.htmlAttrs.push('class="p-dark"'); // @todo
|
|
});
|
|
});
|