astro
Version:
Astro is a modern site builder with web best practices, performance, and DX front-of-mind.
10 lines (9 loc) • 357 B
TypeScript
import type * as vite from 'vite';
import type { AstroLogger } from '../core/logger/core.js';
import type { AstroSettings } from '../types/astro.js';
interface AstroPluginOptions {
settings: AstroSettings;
logger: AstroLogger;
}
export default function createVitePluginAstroServer({ settings, logger, }: AstroPluginOptions): vite.Plugin;
export {};