mirror of
https://github.com/primefaces/primevue.git
synced 2025-05-08 16:37:15 +00:00
11 lines
301 B
JavaScript
11 lines
301 B
JavaScript
// @ts-expect-error
|
|
import { styles } from '#primevue-style';
|
|
//import { useRuntimeConfig } from '#imports';
|
|
|
|
const defineNitroPlugin = (def) => def;
|
|
|
|
export default defineNitroPlugin(async (nitroApp) => {
|
|
nitroApp.hooks.hook('render:html', (html) => {
|
|
html.head.push(styles);
|
|
});
|
|
});
|