jsoncrack.com/next.config.js
2022-12-08 19:52:16 +03:00

16 lines
283 B
JavaScript

const withPWA = require("next-pwa")({
dest: "public",
register: true,
disable: process.env.NODE_ENV === "development",
scope: "/editor",
});
/**
* @type {import('next').NextConfig}
*/
const nextConfig = {
reactStrictMode: true,
};
module.exports = withPWA(nextConfig);