PWA and Offline Behavior
What makes this a PWA
if (process.env.NEXT_ENV !== 'local') {
const withPWA = require('next-pwa')({ ... });
module.exports = withPWA(nextConfig);
}Why Offline Support Matters
How It Works
Testing Offline Support
When Adding a New Tool
Guidelines for New Tools
Offline-Safe Tools (Recommended)
Building Tools with Network Features?
The Only Hard Rule
Best Practice
Last updated