svgl/next.config.js

15 lines
297 B
JavaScript
Raw Normal View History

/** @type {import('next').NextConfig} */
2022-06-21 15:17:47 +01:00
const withPWA = require("next-pwa");
2022-04-10 18:42:18 +01:00
2022-08-08 22:22:37 +01:00
const nextConfig = withPWA({
2022-06-21 15:17:47 +01:00
reactStrictMode: true,
pwa: {
dest: "public",
register: true,
skipWaiting: true,
disable: process.env.NODE_ENV === "development",
},
});
2022-08-08 22:22:37 +01:00
module.exports = nextConfig;