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>
25 lines
1.6 KiB
TypeScript
25 lines
1.6 KiB
TypeScript
import { PHASE_DEVELOPMENT_SERVER, type PHASE_PRODUCTION_SERVER, type PHASE_TYPE } from '../shared/lib/constants';
|
|
import type { ExperimentalConfig, NextConfigComplete, NextConfig, NextConfigRuntime } from './config-shared';
|
|
import { Bundler } from '../lib/bundler';
|
|
export { normalizeConfig } from './config-shared';
|
|
export type { DomainLocale, NextConfig } from './config-shared';
|
|
export declare function warnOptionHasBeenDeprecated(config: NextConfig, nestedPropertyKey: string, reason: string, silent: boolean): boolean;
|
|
export declare function warnOptionHasBeenMovedOutOfExperimental(config: NextConfig, oldExperimentalKey: string, newKey: string, configFileName: string, silent: boolean): NextConfig;
|
|
type LoadConfigOptions = {
|
|
customConfig?: object | null;
|
|
rawConfig?: boolean;
|
|
silent?: boolean;
|
|
reportExperimentalFeatures?: (configuredExperimentalFeatures: ConfiguredExperimentalFeature[]) => void;
|
|
reactProductionProfiling?: boolean;
|
|
debugPrerender?: boolean;
|
|
bundler?: Bundler;
|
|
};
|
|
export default function loadConfig(phase: typeof PHASE_DEVELOPMENT_SERVER, dir: string, opts?: LoadConfigOptions): Promise<NextConfigComplete>;
|
|
export default function loadConfig(phase: typeof PHASE_PRODUCTION_SERVER | typeof PHASE_DEVELOPMENT_SERVER, dir: string, opts?: LoadConfigOptions): Promise<NextConfigRuntime | NextConfigComplete>;
|
|
export default function loadConfig(phase: PHASE_TYPE, dir: string, opts?: LoadConfigOptions): Promise<NextConfigComplete>;
|
|
export type ConfiguredExperimentalFeature = {
|
|
key: keyof ExperimentalConfig;
|
|
value: ExperimentalConfig[keyof ExperimentalConfig];
|
|
reason?: string;
|
|
};
|