/** @type {import('next').NextConfig} */ const withPWA = require("@ducanh2912/next-pwa").default({ dest: "public", cacheOnFrontEndNav: true, aggressiveFrontEndNavCaching: true, reloadOnOnline: true, swcMinify: true, disable: process.env.NODE_ENV === "development", workboxOptions: { disableDevLogs: true }, }); const nextConfig = {}; module.exports = withPWA(nextConfig);