import withPWAInit from 'next-pwa'; const withPWA = withPWAInit({ dest: 'public', disable: process.env.NODE_ENV === 'development', register: true, skipWaiting: true, }); /** @type {import('next').NextConfig} */ const nextConfig = { output: "standalone", allowedDevOrigins: [ "localhost", "127.0.0.1", "*.local", ], }; export default withPWA(nextConfig);