diff --git a/apps/app/microfrontends.json b/apps/app/microfrontends.json index 22319513dd..13092ea74f 100644 --- a/apps/app/microfrontends.json +++ b/apps/app/microfrontends.json @@ -63,8 +63,6 @@ "group": "marketing", "paths": [ "/opengraph-image-:hash", - "/integrations", - "/integrations/:path*", "/api/health", "/api/search", "/images/:path*", diff --git a/apps/app/src/__tests__/microfrontends-config.test.ts b/apps/app/src/__tests__/microfrontends-config.test.ts index 6f12fdc000..8bba0378cf 100644 --- a/apps/app/src/__tests__/microfrontends-config.test.ts +++ b/apps/app/src/__tests__/microfrontends-config.test.ts @@ -87,6 +87,8 @@ describe("microfrontends config", () => { ]) ); expect(oldWwwPaths.has("/pitch-deck")).toBe(false); + expect(oldWwwPaths.has("/integrations")).toBe(false); + expect(oldWwwPaths.has("/integrations/:path*")).toBe(false); for (const route of startPaths) { expect(oldWwwPaths.has(route)).toBe(false);