UNPKG

rwsdk

Version:

Build fast, server-driven webapps on Cloudflare with SSR, RSC, and realtime

13 lines (12 loc) 373 B
import { InlineConfig } from "vite"; export type RedwoodPluginOptions = { silent?: boolean; rootDir?: string; includeCloudflarePlugin?: boolean; configPath?: string; entry?: { client?: string | string[]; worker?: string; }; }; export declare const redwoodPlugin: (options?: RedwoodPluginOptions) => Promise<InlineConfig["plugins"]>;