import FrontCameraOverviewCard from "../components/FrontCameraOverview/FrontCameraOverviewCard"; import SightingHistoryWidget from "../components/SightingsWidget/SightingWidget"; import { SightingFeedProvider } from "../context/providers/SightingFeedProvider"; import { CAM_BASE, OUTSIDE_CAM_BASE } from "../utils/config"; const Dashboard = () => { const mode = import.meta.env.MODE; const base_url = `${CAM_BASE}/SightingList/sightingSummary?mostRecentRef=`; // const outside_url = `http://100.82.205.44/mergedHistory/sightingSummary?mostRecentRef=`; console.log(mode); console.log(OUTSIDE_CAM_BASE); return (
); }; export default Dashboard;