svgl/next.config.js
2022-04-10 18:42:18 +01:00

16 lines
263 B
JavaScript

const withPWA = require("next-pwa");
const nextConfig = {
reactStrictMode: true,
};
module.exports = withPWA({
pwa: {
dest: "public",
register: true,
skipWaiting: true,
disable: process.env.NODE_ENV === "development",
},
nextConfig,
});