Skip to main content
Module

x/udibo_react_app/dev.ts>DevOptions

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
interface DevOptions
import { type DevOptions } from "https://deno.land/x/udibo_react_app@0.4.0/dev.ts";

Properties

optional
isCustomBuildArtifact: (pathname: string) => boolean

Used to identify and ignore additional build artifacts created in your preBuild and postBuild functions.

optional
appPort: number

The port that the application uses. Defaults to APP_PORT environment variable or 9000.

optional
devPort: number

The port for the dev script's live reload server. Defaults to DEV_PORT environment variable or 9001.

optional
entryPoint: string

The entry point for the application server. Defaults to getEnv("APP_ENTRY_POINT") or "./main.ts".