UNPKG

astro

Version:

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

9 lines (8 loc) 434 B
import { type ViteDevServer, type Plugin } from 'vite'; /** * Creates a minimal dev server with a list of plugins. Use this instance for a one-shot usage. * * NOTE: This is intentionally in its own module to avoid pulling `vite`'s heavy `createServer` * (and transitively Rollup) into every file that imports from `viteUtils.ts`. */ export declare function createMinimalViteDevServer(plugins?: Plugin[]): Promise<ViteDevServer>;