import withPWA from 'next-pwa'; /** @type {import('next').NextConfig} */ const nextConfig = withPWA({ dest: 'public', register: true, disable: process.env.NODE_ENV === 'development', skipWaiting: true }); export default nextConfig;