This commit is contained in:
Eshan Roy
2024-12-03 20:00:16 +05:30
parent e18e5ca41c
commit ba1808efa0
2 changed files with 6 additions and 2 deletions

View File

@@ -22,7 +22,7 @@ function App() {
<Route path="/features" element={<Features />} />
<Route path="/download" element={<Download />} />
<Route path="/developers" element={<Developers />} />
<Route path="/privacy-policy" element={<PrivacyPolicy />} /> {/* Privacy Policy Route */}
<Route path="/privacy-policy" element={<PrivacyPolicy />} />
</Routes>
</main>
<CookieNotice />

View File

@@ -18,7 +18,11 @@
"strict": true,
"noUnusedLocals": true,
"noUnusedParameters": true,
"noFallthroughCasesInSwitch": true
"noFallthroughCasesInSwitch": true,
/* Other options */
"esModuleInterop": true, // Optional but recommended
"types": ["react", "react-dom"] // Ensure React types are included
},
"include": ["src"]
}