Jan 16, 2025
Progressive Web Apps (PWAs) offer the best of both worlds: the reach of the web and the experience of native apps. With the release of Next.js 15, itβs easier than ever to create performant, installable web apps using the new App Router architecture.
In this guide, weβll walk through setting up a basic PWA using Next.js 15, complete with offline support, a manifest file, and service worker integration.
Before proceeding, ensure you have the following:
First, create a manifest.ts
file in the root of your Next.js project. This file is essential for
PWA installability.
{
"name": "My PWA App",
"short_name": "PWA App",
"start_url": "/",
"display": "standalone",
"background_color": "#ffffff",
"theme_color": "#000000",
"icons": [
{
"src": "/icons/icon-192x192.png",
"sizes": "192x192",
"type": "image/png"
},
{
"src": "/icons/icon-512x512.png",
"sizes": "512x512",
"type": "image/png"
}
]
}
Create a folder in your public
directory called icons
and add your icon images there:
/public/icons/icon-192x192.png
/public/icons/icon-512x512.png