isDev
Edit this pageisDev is a constant boolean exported by solid-js/web.
Import
import { isDev } from "solid-js/web";Type
const isDev: boolean;Behavior
isDevis a bundle constant: it istruein the development browser bundle andfalsein production and server bundles.DEVis a separate development-only export fromsolid-js.- Because it is exported as a constant, bundlers can eliminate unreachable branches.
Examples
Basic usage
import { isDev } from "solid-js/web";
if (isDev) { debugPanel.mount();}