Skip to content

Commit 219937e

Browse files
committed
chore(website): Enable React.StrictMode
1 parent cb952da commit 219937e

File tree

1 file changed

+3
-9
lines changed

1 file changed

+3
-9
lines changed

packages/documentation/next.config.js

Lines changed: 3 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,6 @@
1-
/**
2-
* @type import('next/dist/next-server/server/config-shared').NextConfig
3-
*/
4-
const config = {
5-
future: {
6-
strictPostcssConfiguration: true,
7-
},
1+
/** @type {import('next').NextConfig} */
2+
module.exports = {
3+
reactStrictMode: true,
84
eslint: {
95
// I have already run lint before this step...
106
ignoreDuringBuilds: true,
@@ -34,5 +30,3 @@ const config = {
3430
];
3531
},
3632
};
37-
38-
module.exports = config;

0 commit comments

Comments
 (0)