12 lines
246 B
JavaScript
12 lines
246 B
JavaScript
/** @type {import('next').NextConfig} */
|
|
const withPWA = require('next-pwa')({
|
|
dest: 'public',
|
|
register: true,
|
|
skipWaiting: true,
|
|
});
|
|
|
|
module.exports = withPWA({
|
|
reactStrictMode: true,
|
|
// you can add more custom Next.js config here
|
|
});
|