DEV Community

Discussion on: Convert any website into a PWA in just 3 simple steps

Collapse
 
nataliedeweerd profile image
𝐍𝐚𝐭𝐚𝐥𝐢𝐞 𝐝𝐞 𝐖𝐞𝐞𝐫𝐝 • Edited

Do you have any tips for debugging why the "Add to homescreen" button may not appear on mobile? As that's the issue I'm having :(

Nvm - sorted it! Apparently htaccess rewrite's stop the "Add to homescreen" from appearing.

#RewriteCond %{REQUEST_FILENAME} !-d
#RewriteCond %{REQUEST_FILENAME}\.html -f
#RewriteRule ^(.*)$ $1.html [NC,L]
Collapse
 
developertharun profile image
Tharun Shiv

Ah I see.. then what should we do to resolve it?

Collapse
 
nataliedeweerd profile image
𝐍𝐚𝐭𝐚𝐥𝐢𝐞 𝐝𝐞 𝐖𝐞𝐞𝐫𝐝

Just comment any redirects out like I have and it works :) Worth noting I'm not using any js framework, my PWA was very basic - haha.

Thread Thread
 
developertharun profile image
Tharun Shiv

Even I build PWAs without any framework. That doesn't mean it's basic, it means you know to do stuff without the help of a framework. 🙂 Good work 👍