/** @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 }, }); /** @type {import('next').NextConfig} */ const nextConfig = { distDir: process.env.BUILD_DIR || ".next", }; module.exports = withPWA(nextConfig);