We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
How to make a plugin to add custom flag in Nuxt 3 ? I tried this but not working
export default defineNuxtPlugin((nuxtApp) => { let webview = useCookie('webview') let device = useDevice() device.isWebview = webview && webview.value !== null; })