i created a todo list app using nodejs and wanted to add PWA (add to home screen feature) , on adding manifest.js file the browser console shows the following errors.
login:1 GET http://localhost:3000/[b]manifest.webmanifest[/b] 404 (Not Found) Failed to load resource: the server responded with a status of 404 (Not Found)
inside header.ejs
inside manifest.json
{ "short_name":"Slate", "name":"SLATE (The Online Scheduler)", "description":"A simple To-Do list application.", "icons":[ { "src":"images/logophone.png", "type":"image/png", "sizes":"187x91" }, { "src":"images/logo.png", "type":"image/png", "sizes":"519x151" } ], "start_url":"home.ejs", "display":"standalone", "background_color":"#45ff61", "theme_color":"#45ff61", "scope":"/" }


struggling hard to solve it ..kindly help
Источник: https://stackoverflow.com/questions/662 ... -not-found