jsoncrack.com/next.config.js

16 lines
284 B
JavaScript
Raw Normal View History

2022-09-04 13:01:01 +03:00
const withPWA = require("next-pwa")({
dest: "public",
register: true,
disable: process.env.NODE_ENV === "development",
scope: "/editor",
});
2022-04-27 14:00:47 +03:00
2022-04-27 13:56:24 +03:00
/**
* @type {import('next').NextConfig}
*/
2022-04-27 14:00:47 +03:00
const nextConfig = {
2022-12-11 14:27:07 +03:00
reactStrictMode: false,
2022-04-27 13:56:24 +03:00
};
2022-04-27 14:00:47 +03:00
2022-09-04 13:01:01 +03:00
module.exports = withPWA(nextConfig);