Skip to content

fix: prefer nitro.static over _generate #11

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 2 commits into from
Jun 15, 2025
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