summaryrefslogtreecommitdiff
path: root/next.config.mjs
blob: ab509d0815db33381e96cbd480efa0c163d96a59 (plain)
1
2
3
4
5
6
7
8
9
10
11
import withPWA from 'next-pwa';

/** @type {import('next').NextConfig} */
const nextConfig = withPWA({
  dest: 'public',
  register: true,
  disable: process.env.NODE_ENV === 'development',
  skipWaiting: true
});

export default nextConfig;