chore: linting error

This commit is contained in:
Harlan Wilton 2023-09-03 17:53:30 +02:00
parent 6e6904389d
commit ba0b49576a

View File

@ -251,7 +251,8 @@ export default defineRenderHandler(async (event): Promise<Partial<RenderResponse
setFailedHeadInjectionHandler(() => {
console.warn('Unhead has fallen back to a shared context that may have unexpected behavior. Consider wrapping your code with nuxtApp.runWithContext. Learn more at https://nuxt.com/docs/getting-started/seo-meta#pitfalls.')
// dump stacktrace to help debugging, we don't want to trigger a blocking SSR error
console.warn(new Error('').stack!.split('\n').slice(5).join('\n'))
// eslint-disable-next-line unicorn/error-message
console.warn(new Error().stack!.split('\n').slice(5).join('\n'))
})
}
// needed for hash hydration plugin to work