Disable strict mode

This commit is contained in:
Hayk Martiros 2022-11-24 14:53:51 -08:00
parent a2233d2aab
commit 45aa86db31
1 changed files with 1 additions and 1 deletions

View File

@ -1,6 +1,6 @@
/** @type {import('next').NextConfig} */
const nextConfig = {
reactStrictMode: true,
reactStrictMode: false,
};
module.exports = nextConfig;