muthuk1 commited on
Commit
c9af10b
·
verified ·
1 Parent(s): 2dec160

Add next.config.ts

Browse files
Files changed (1) hide show
  1. 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;