UNPKG

astro

Version:

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

10 lines (9 loc) 343 B
import type fsMod from 'node:fs'; import type { Plugin } from 'vite'; import type { Logger } from '../core/logger/core.js'; import type { AstroSettings } from '../types/astro.js'; export declare function astroContentImportPlugin({ fs, settings, logger, }: { fs: typeof fsMod; settings: AstroSettings; logger: Logger; }): Plugin[];