Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion src/utils/configuration.ts
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,8 @@ export function configure(ctx: HttpClientHintsContext, nuxt: Nuxt) {
}
}

const clientOnly = nuxt.options._generate || !nuxt.options.ssr
// eslint-disable-next-line @typescript-eslint/no-explicit-any
const clientOnly = nuxt.options.nitro.static || (nuxt.options as any)._generate /* TODO: remove in future */ || !nuxt.options.ssr

// we register the client detector only if needed and not in SSR mode
if ((options.detectBrowser || options.detectOS || resolvedOptions.userAgent.length) && clientOnly) {
Expand Down