Initial commit: New MoreminiMore website with fresh design

This commit is contained in:
MoreminiMore
2026-04-22 01:59:05 +07:00
commit 76409638cc
14010 changed files with 2052041 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;