Add first business article and article layout

This commit is contained in:
2026-05-21 12:14:46 -05:00
parent 200e14e2e9
commit 4735704c6f
9617 changed files with 988627 additions and 0 deletions

15
node_modules/astro/dist/prerender/utils.d.ts generated vendored Normal file
View File

@@ -0,0 +1,15 @@
import type { AstroSettings } from '../types/astro.js';
import type { AstroConfig } from '../types/public/config.js';
export declare function getPrerenderDefault(config: AstroConfig): boolean;
/**
* Returns the correct output directory of the SSR build based on the configuration
*/
export declare function getServerOutputDirectory(settings: AstroSettings): URL;
/**
* Returns the output directory used by the prerender environment.
*/
export declare function getPrerenderOutputDirectory(settings: AstroSettings): URL;
/**
* Returns the correct output directory of the client build based on the configuration
*/
export declare function getClientOutputDirectory(settings: AstroSettings): URL;