UNPKG

one

Version:

One is a new React Framework that makes Vite serve both native and web.

13 lines (10 loc) 343 B
// Global function for fetching static HTML in Workers (set per-request) let _fetchStaticHtml: ((path: string) => Promise<string | null>) | null = null export function setFetchStaticHtml( fn: ((path: string) => Promise<string | null>) | null ) { _fetchStaticHtml = fn } export function getFetchStaticHtml() { return _fetchStaticHtml }