UNPKG

astro

Version:

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

8 lines (7 loc) 257 B
import type { Plugin as VitePlugin } from 'vite'; import type { RoutesList } from '../types/astro.js'; interface PagePluginOptions { routesList: RoutesList; } export declare function pluginPage({ routesList }: PagePluginOptions): VitePlugin; export {};