import type { NextConfig } from "next"; import withPWAInit from "@ducanh2912/next-pwa"; const withPWA = withPWAInit({ dest: "public", disable: false, register: true, } as any); const nextConfig: NextConfig = { images: { remotePatterns: [ { protocol: 'https', hostname: 'images.unsplash.com', pathname: '/**', }, ], }, turbopack: {}, }; export default withPWA(nextConfig);