interface AstroRenderer {
    clientEntrypoint?: string;
    jsxImportSource?: string;
    jsxTransformOptions?: JSXTransformFn;
    name: string;
    serverEntrypoint: string;
}

Hierarchy (view full)

Properties

clientEntrypoint?: string

Import entrypoint for the client/browser renderer.

jsxImportSource?: string

Deprecated

Vite plugins should transform the JSX instead

jsxTransformOptions?: JSXTransformFn

Deprecated

Vite plugins should transform the JSX instead

name: string

Name of the renderer.

serverEntrypoint: string

Import entrypoint for the server/build/ssr renderer.