Some checks failed
CI / go (push) Waiting to run
CI / docker (push) Waiting to run
CI / lint-go (push) Waiting to run
CI / lint-docs (push) Waiting to run
CI / check-paperclip (push) Waiting to run
Deploy static site / Deploy to GitHub Pages (push) Has been cancelled
Deploy static site / Deploy via Docker to hatch.surf (push) Has been cancelled
Resolved conflicts by taking GitHub versions for: - .dockerignore, .gitignore, Dockerfile, README.md, docker-compose.yml Kept deploy.sh updated to: - Pull from GitHub (primary source) - Push to Gitea (push-mirror) - Build from site/ directory (GitHub structure) Co-Authored-By: Paperclip <noreply@paperclip.ing>
39 lines
1.6 KiB
TypeScript
39 lines
1.6 KiB
TypeScript
import type { NextConfigComplete } from '../config-shared';
|
|
import '../require-hook';
|
|
import '../node-environment';
|
|
import type { StaticPathsResult } from '../../build/static-paths/types';
|
|
import type { IncrementalCache } from '../lib/incremental-cache';
|
|
import { type ExperimentalPPRConfig } from '../lib/experimental/ppr';
|
|
type RuntimeConfig = {
|
|
pprConfig: ExperimentalPPRConfig | undefined;
|
|
partialFallbacks: boolean;
|
|
configFileName: string;
|
|
cacheComponents: boolean;
|
|
};
|
|
export declare function loadStaticPaths({ dir, distDir, pathname, config, httpAgentOptions, locales, defaultLocale, isAppPath, page, isrFlushToDisk, fetchCacheKeyPrefix, cacheMaxMemorySize, requestHeaders, cacheHandler, cacheHandlers, cacheLifeProfiles, nextConfigOutput, buildId, deploymentId, authInterrupts, sriEnabled, }: {
|
|
dir: string;
|
|
distDir: string;
|
|
pathname: string;
|
|
config: RuntimeConfig;
|
|
httpAgentOptions: NextConfigComplete['httpAgentOptions'];
|
|
locales?: readonly string[];
|
|
defaultLocale?: string;
|
|
isAppPath: boolean;
|
|
page: string;
|
|
isrFlushToDisk?: boolean;
|
|
fetchCacheKeyPrefix?: string;
|
|
cacheMaxMemorySize: number;
|
|
requestHeaders: IncrementalCache['requestHeaders'];
|
|
cacheHandler?: string;
|
|
cacheHandlers?: NextConfigComplete['cacheHandlers'];
|
|
cacheLifeProfiles?: {
|
|
[profile: string]: import('../../server/use-cache/cache-life').CacheLife;
|
|
};
|
|
nextConfigOutput: 'standalone' | 'export' | undefined;
|
|
buildId: string;
|
|
deploymentId: string;
|
|
authInterrupts: boolean;
|
|
sriEnabled: boolean;
|
|
}): Promise<StaticPathsResult>;
|
|
export {};
|