NEXT.js Zoom in-out isue
Unanswered
English Toy Terrier posted this in #help-forum
English Toy TerrierOP
hi guys I have a problem in next js, I want to disable the zoom in-out on mobile version. I know that I should not add meta tags to the root layout and the only solution what I have found for it is this
<meta
name="viewport"
content="width=device-width, initial-scale=1.0"
/>
can someone help me with this ? I am a bit new here and this is my first project as well
<meta
name="viewport"
content="width=device-width, initial-scale=1.0"
/>
can someone help me with this ? I am a bit new here and this is my first project as well
2 Replies
@English Toy Terrier hi guys I have a problem in next js, I want to disable the zoom in-out on mobile version. I know that I should not add meta tags to the root layout and the only solution what I have found for it is this
<meta
name="viewport"
content="width=device-width, initial-scale=1.0"
/>
can someone help me with this ? I am a bit new here and this is my first project as well
[use
viewport in the metadata API](https://nextjs.org/docs/app/api-reference/functions/generate-metadata#viewport)English Toy TerrierOP
thanks, I had to put this to my metadata viewport : {userScalable: false,}