UNPKG

astro

Version:

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

10 lines (9 loc) 294 B
import { type Plugin } from 'vite'; import type { AstroSettings } from '../types/astro.js'; interface AstroEnvPluginParams { settings: AstroSettings; mode: string; sync: boolean; } export declare function astroEnv({ settings, mode, sync }: AstroEnvPluginParams): Plugin; export {};