Skip to content
Merged
Changes from 1 commit
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
2 changes: 1 addition & 1 deletion src/utils/configuration.ts
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@
}
}

const clientOnly = nuxt.options._generate || !nuxt.options.ssr
const clientOnly = nuxt.options.nitro.static || (nuxt.options as any)._generate /* TODO: remove in future */ || !nuxt.options.ssr

Check failure on line 54 in src/utils/configuration.ts

View workflow job for this annotation

GitHub Actions / lint

Unexpected any. Specify a different type

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