svgl/next.config.js

15 lines
297 B
JavaScript
Raw Normal View History

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