Get microfrontends config for a project
GET
https://api.vercel.com/v1/microfrontends/projects/{projectIdOrName}/production-mfe-configGet the microfrontends config for a project by ID or name.
Request
import { Vercel } from "@vercel/sdk";
const vercel = new Vercel({ bearerToken: "<YOUR_BEARER_TOKEN_HERE>",});
async function run() { const result = await vercel.microfrontends.getMicrofrontendsConfigForProject({ projectIdOrName: "<value>", teamId: "team_1a2b3c4d5e6f7g8h9i0j1k2l", slug: "my-team-url-slug", });
console.log(result);}
run();Response
{ "config": { "$schema": "string", "version": "1", "applications": "value", "options": { "disableOverrides": "false", "localProxyPort": "123" } }}AuthorizationbearerToken
Default authentication mechanism