astro-ghostcms/.pnpm-store/v3/files/9f/f8356cb334e4fd858565aebebee...

11 lines
469 B
Plaintext
Raw Normal View History

2024-02-14 14:10:47 +00:00
import type { AstroInlineConfig } from '../../@types/astro.js';
export interface BuildOptions {
}
/**
* Builds your site for deployment. By default, this will generate static files and place them in a dist/ directory.
* If SSR is enabled, this will generate the necessary server files to serve your site.
*
* @experimental The JavaScript API is experimental
*/
export default function build(inlineConfig: AstroInlineConfig, options?: BuildOptions): Promise<void>;