chore: change to "Strict Mode" in runtime

This commit is contained in:
Bart van der Braak 2023-06-14 02:27:38 +02:00
parent fe7005a79c
commit 7684da4aa9

View file

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