Skip to main content
Module

x/udibo_react_app/_internals.ts

A React Framework for Deno that makes it easy to create highly interactive apps that have server side rendering with file based routing for both your UI and API.
Go to Latest
File
/** * Used internally for testing if code is running on the server or in the browser. * Replace isServer with false to simulate being in the browser. */export const _internals = { isServer: "Deno" in globalThis,};