Files
sendstr-web/next.config.js
2022-06-23 10:44:10 -05:00

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",
},
})