UNPKG

astro

Version:

Astro is a modern site builder with web best practices, performance, and DX front-of-mind.

9 lines (8 loc) 501 B
import type { Plugin as VitePlugin } from 'vite'; import type { AstroPluginOptions } from '../../types/astro.js'; import type { ServerIslandsState } from './shared-state.js'; export declare const SERVER_ISLAND_MANIFEST = "virtual:astro:server-island-manifest"; export declare const SERVER_ISLAND_MAP_MARKER = "$$server-islands-map$$"; export declare function vitePluginServerIslands({ settings, serverIslandsState, }: AstroPluginOptions & { serverIslandsState: ServerIslandsState; }): VitePlugin;