mirror of
https://github.com/aljazceru/sendstr-web.git
synced 2025-12-17 06:24:24 +01:00
11 lines
237 B
JavaScript
11 lines
237 B
JavaScript
/** @type {import('next').NextConfig} */
|
|
const withPWA = require('next-pwa')
|
|
|
|
module.exports = withPWA({
|
|
pwa: {
|
|
dest: 'public',
|
|
register: true,
|
|
skipWaiting: true,
|
|
disable: process.env.NODE_ENV === "development",
|
|
},
|
|
}) |