Skip to main content
Go to Latest
type alias ServeConfig
import { type ServeConfig } from "https://deno.land/x/esbuild_serve@1.3.0/types.ts";
definition: { port?: number; pages: Record<string, string>; templateRoot?: string; preventTemplateRootFallback?: boolean; outDir?: string; assets?: Record<string, string>; noHtmlEntries?: Record<string, string>; htmlEntries?: string[]; extraLoaders?: Record<string, Loader>; external?: string[]; globals?: Record<string, string>; sideEffects?: boolean; plugins?: Plugin[]; poylfills?: string[]; shims?: string[]; defaultTemplate?: (name: string, path: string) => string; }