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

14
node_modules/@astrojs/node/dist/shared.d.ts generated vendored Normal file
View File

@@ -0,0 +1,14 @@
import type { NodeAppHeadersJson, Options } from './types.js';
export declare const STATIC_HEADERS_FILE = "_headers.json";
/**
* Resolves the client directory path at runtime.
*
* At build time, we know the relative path between server and client directories.
* At runtime, we need to find the actual location based on where the server entry is running.
*
* ## Error
*
* It throws an error if it can't find the directory while walking the parent directories.
*/
export declare function resolveClientDir(options: Options): string;
export declare function readHeadersJson(outDir: string | URL): NodeAppHeadersJson | undefined;