UNPKG

@redwoodjs/sdk

Version:

A full-stack webapp toolkit designed for TypeScript, Vite, and React Server Components

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