Show "DEV" badge in navbar on development mode π οΈ
File: client/src/pages/Dashboard.jsx
No way to tell if you're on local dev
or production π fr!!
Fix:
const isDev = import.meta.env.DEV
{isDev && (
DEV
)}
~5 lines! Vite already provides import.meta.env.DEV β
No backend needed π―
Disappears automatically in production!! π₯
Show "DEV" badge in navbar on development mode π οΈ
File: client/src/pages/Dashboard.jsx
No way to tell if you're on local dev
or production π fr!!
Fix:
const isDev = import.meta.env.DEV
{isDev && (
DEV
)}
~5 lines! Vite already provides import.meta.env.DEV β
No backend needed π―
Disappears automatically in production!! π₯