JSON-файл
manifiest.json
{
"name": "Sample site",
"short_name": "Site",
"description": "Learn how to create and share something or other.",
"start_url": "index.html",
"background_color": "#000000",
"theme_color": "#0f4a73",
"icons": [{
"src": "icon/icon-192x192.png",
"sizes": "256x256",
"type": "image/png"
}]
}
<link rel="manifest" href="manifest.json">
Service-worker.js
const RESOURCES_TO_PRELOAD = [
'./',
'./index.html',
'./logo.svg',
'./register-worker.js',
'./todo-app.js',
'./manifest.json',
'./offline-404.html'
];
Файл манифеста показывает 404. Не удается обнаружить манифест под службойработник.
Любое решение, глядя на код выше?