// next.config.js
import withPWA from 'next-pwa'

const nextConfig = {
  images: {
    domains: ['placehold.co', 'backend.godeepgreen.com'],
  },
}

export default withPWA({
  ...nextConfig,
  dest: 'public',
  register: true,
  skipWaiting: true,
})
