UNPKG

@wroud/vite-plugin-ssg

Version:

A Vite plugin for static site generation (SSG) with React. Renders React applications to static HTML for faster load times and improved SEO.

8 lines 289 B
import { type HTMLAttributes } from "react"; export interface HeadProps extends HTMLAttributes<HTMLHeadElement> { before?: React.ReactNode; after?: React.ReactNode; children?: React.ReactNode; } export declare const Head: React.FC<HeadProps>; //# sourceMappingURL=Head.d.ts.map