next.config.js 284 B

123456789101112131415
  1. const withPWA = require("next-pwa")({
  2. dest: "public",
  3. register: true,
  4. disable: process.env.NODE_ENV === "development",
  5. scope: "/editor",
  6. });
  7. /**
  8. * @type {import('next').NextConfig}
  9. */
  10. const nextConfig = {
  11. reactStrictMode: false,
  12. };
  13. module.exports = withPWA(nextConfig);