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 81be85b commit b1f4e82Copy full SHA for b1f4e82
src/runtime/plugin.server.ts
@@ -2,9 +2,14 @@ import { hash } from 'ohash'
2
import { defineNuxtPlugin } from '#imports'
3
import { configHash } from '#build/nuxt-style-extractor-config-hash.js'
4
5
+declare module '#app' {
6
+ interface NuxtApp {
7
+
8
+ }
9
+}
10
export default defineNuxtPlugin({
11
name: 'style-extractor',
- parallel: true,
12
+ enforce: 'post',
13
setup(nuxt) {
14
nuxt.hook('app:rendered', async (nuxtCtx) => {
15
const html = nuxtCtx.renderResult?.html || ''
0 commit comments