• Parameters

    • path: string = ciConfigFn

    Returns {
        codecovBundleName?: string;
        deployTargets: {
            aws?: { projectId: string };
            azure?: { subscriptionId: string };
            cloudflare?: { projectName: string };
            neocities?: { password: string; username: string };
            netlify?: { netlifySiteId: string };
            surge?: { domain: string };
            vercel?: { projectId: string };
        };
        gtmId?: string;
        headers?: Record<
            string,
            {
                "Cache-Control"?: string;
                "Cache-Encoding"?: string;
                "Content-Type"?: string;
                "X-Content-Type-Options"?: string;
                "X-Frame-Options"?: string;
                "X-XSS-Protection"?: string;
                [key: string]: unknown;
            },
        >;
        output?: string;
        redirects?: [string, string][];
        rewrites?: [string, string][];
        sentryProjectId?: string;
        short_name?: string;
        subdomain: string;
        title: string;
    }