Add next.config.ts
Browse files- web/next.config.ts +7 -0
web/next.config.ts
ADDED
|
@@ -0,0 +1,7 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
import type { NextConfig } from "next";
|
| 2 |
+
|
| 3 |
+
const nextConfig: NextConfig = {
|
| 4 |
+
reactStrictMode: true,
|
| 5 |
+
};
|
| 6 |
+
|
| 7 |
+
export default nextConfig;
|