Joaquín Sánchez
Joaquín Sánchez
The server sending the toolbar with the hamburger, so it seems a problem with the breakpoints, maybe you can change the defaults using `display` property in vuetify options (update the...
@igorexa34314 mobile breakpoint is 1280px, the default value is `lg` breakpoint: https://github.com/vuetifyjs/vuetify/blob/f8105c2902bc5ca57c92f8f2898c62a6d5fa001e/packages/vuetify/src/composables/display.ts#L86
do you have a VNavigationDrawer? It seems the problem is in the layout and the nav drawer, I can see the nav drawer styles in server response
If I don't use mobile view (size > 1280px) the server sending the page without nav drawer and hamburger, if the size is between 820px and 1280px I see the...
if using size < 820px the server sending the nav drawer styles (div + navigation-drawer classes) and the hamburger button.
so, it seems a problem with the breakpoints, I don't know why your logic not working, the mobile break point seems to be fine: 
we need to figure out what's happening with sizes between 820px and 1280px, maybe a bug in vuetify maybe a bug in the breakpoints or maybe both ;)
The mobile logic seems to fine: https://github.com/vuetifyjs/vuetify/blob/f8105c2902bc5ca57c92f8f2898c62a6d5fa001e/packages/vuetify/src/composables/display.ts#L169-L207 But, you're modifying only lg and maybe you're breaking the global breakpoints... check the logic in previous link.
can you just change mobile-breakpoint in the plugin with the value in the app config? ```ts export default defineNuxtPlugin(nuxtApp => { const { mobileBreakpoint } = useAppConfig() nuxtApp.hook('vuetify:before-create', ({ vuetifyOptions...
You can use `useNuxtApp().$vuetify.display.mobile.value` in the console resizing the window I'm going to check the logic nav drawer, can you show me the layout.vue?