svgl/next.config.js
2022-06-21 15:17:47 +01:00

13 lines
265 B
JavaScript

/** @type {import('next').NextConfig} */
const withPWA = require("next-pwa");
module.exports = withPWA({
reactStrictMode: true,
pwa: {
dest: "public",
register: true,
skipWaiting: true,
disable: process.env.NODE_ENV === "development",
},
});