© 2026 LinearBytes Inc.
Search posts, tags, users, and pages
Arsalan Uddin
Student
Hey, I am getting an error Manifest: property 'scope' ignored, URL is invalid. Manifest: property 'src' ignored, URL is invalid. (Vite React)
Is any solution to it also it is showing in desktop mode on the mobile
David Schinteie
Frontend Developer | JavaScript | React
For the start_url, please add the full url with the https enabled, like: example.com instead of example.com
example.com
Also, for showing desktop mode on mobile, you can try to remove the following line from index.html: <meta name="viewport" content="width=device-width, initial-scale=1.0" />
index.html
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
This will prevent your site from sizing on mobile devices.
Not sure if this is what you're looking for 🤷♂️
David Schinteie I will try it, Thanks for the reply