svgl/next.config.js

16 lines
263 B
JavaScript
Raw Normal View History

2022-04-11 01:42:18 +08:00
const withPWA = require("next-pwa");
const nextConfig = {
2022-01-16 22:40:15 +08:00
reactStrictMode: true,
2022-04-11 01:42:18 +08:00
};
module.exports = withPWA({
pwa: {
dest: "public",
register: true,
skipWaiting: true,
disable: process.env.NODE_ENV === "development",
},
nextConfig,
});