Skip to content

feat(site): add new site shell#7674

Merged
mhartington merged 4 commits intomainfrom
web-base
Mar 19, 2026
Merged

feat(site): add new site shell#7674
mhartington merged 4 commits intomainfrom
web-base

Conversation

@mhartington
Copy link
Member

@mhartington mhartington commented Mar 19, 2026

Summary by CodeRabbit

  • New Features

    • Added a new Site application as the primary host for the documentation platform, including site configuration, UI settings, and build/start scripts.
  • Documentation

    • Updated local development instructions and runtime ports: Site (3000), Docs (3001), Blog (3002), Eclipse (3003).

@vercel
Copy link

vercel bot commented Mar 19, 2026

The latest updates on your projects. Learn more about Vercel for GitHub.

Project Deployment Actions Updated (UTC)
blog Error Error Mar 19, 2026 3:40pm
docs Ready Ready Preview, Comment Mar 19, 2026 3:40pm
eclipse Ready Ready Preview, Comment Mar 19, 2026 3:40pm

Request Review

@coderabbitai
Copy link
Contributor

coderabbitai bot commented Mar 19, 2026

Important

Review skipped

Review was skipped due to path filters

⛔ Files ignored due to path filters (1)
  • pnpm-lock.yaml is excluded by !**/pnpm-lock.yaml

CodeRabbit blocks several paths by default. You can override this behavior by explicitly including those paths in the path filters. For example, including **/dist/** will override the default block on the dist directory, by removing the pattern from both the lists.

⚙️ Run configuration

Configuration used: Path: .coderabbit.yaml

Review profile: CHILL

Plan: Pro

Run ID: 2940d577-c8f6-42a8-9820-e63e06fd43b4

You can disable this status message by setting the reviews.review_status to false in the CodeRabbit configuration file.

Use the checkbox below for a quick retry:

  • ✅ Review completed - (🔄 Check again to review again)

Walkthrough

Port allocations and local URLs were adjusted across apps and a new site app was added. Blog → 3002, Docs → 3001, Eclipse → 3003, Site introduced at 3000. Changes touch package scripts, hardcoded fallback URLs, Playwright configs, READMEs, and new site setup files.

Changes

Cohort / File(s) Summary
Blog app port migration
apps/blog/README.md, apps/blog/package.json, apps/blog/src/lib/url.ts
Changed local dev port and hardcoded fallback URL from 30013002; updated README and npm scripts (dev, start).
Docs app port migration
apps/docs/README.md, apps/docs/package.json, apps/docs/playwright.config.ts, apps/docs/src/lib/urls.ts
Changed local dev port and hardcoded fallback URL from 30003001; updated README, npm scripts, and Playwright baseURL/webServer.
Eclipse app port migration
apps/eclipse/README.md, apps/eclipse/package.json, apps/eclipse/playwright.config.ts, apps/eclipse/src/app/(design-system)/sitemap.ts
Changed local dev port and hardcoded fallback URL from 30023003; updated README, npm scripts, Playwright config, and sitemap baseUrl fallback.
Monorepo root docs
README.md
Updated local development URL section to include site at 3000 and reflect shifted ports for docs, blog, and eclipse.
Site app added
apps/site/README.md, apps/site/components.json, apps/site/next.config.mjs, apps/site/package.json, apps/site/postcss.config.mjs
New site app with Next.js config, security headers/CSP, rewrites, assetPrefix, npm scripts (dev/start on 3000), Shadcn UI components config, package and PostCSS re-export.

Estimated code review effort

🎯 4 (Complex) | ⏱️ ~65 minutes

🚥 Pre-merge checks | ✅ 2 | ❌ 1

❌ Failed checks (1 warning)

Check name Status Explanation Resolution
Docstring Coverage ⚠️ Warning Docstring coverage is 66.67% which is insufficient. The required threshold is 80.00%. Write docstrings for the functions missing them to satisfy the coverage threshold.
✅ Passed checks (2 passed)
Check name Status Explanation
Description Check ✅ Passed Check skipped - CodeRabbit’s high-level summary is enabled.
Title check ✅ Passed The title accurately describes the main change: introducing a new site shell application with supporting infrastructure and port configuration updates.

✏️ Tip: You can configure your own custom pre-merge checks in the settings.

📝 Coding Plan
  • Generate coding plan for human review comments

Thanks for using CodeRabbit! It's free for OSS, and your support helps us grow. If you like it, consider giving us a shout-out.

❤️ Share

Comment @coderabbitai help to get the list of available commands and usage tips.

Copy link
Contributor

@coderabbitai coderabbitai bot left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Actionable comments posted: 3

🧹 Nitpick comments (1)
apps/site/next.config.mjs (1)

193-198: Remove the hardcoded LAN IP from the shared default.

allowedDevOrigins is meant for extra development origins. Baking 192.168.1.48 into the repo default gives every contributor that private-network exception, even if it only applies to one machine. Keep the default loopback-only and let individuals opt in through ALLOWED_DEV_ORIGINS. (nextjs.org)

Suggested fix
 const allowedDevOrigins = (
-  process.env.ALLOWED_DEV_ORIGINS ?? "localhost,127.0.0.1,192.168.1.48"
+  process.env.ALLOWED_DEV_ORIGINS ?? "localhost,127.0.0.1"
 )
🤖 Prompt for AI Agents
Verify each finding against the current code and only fix it if needed.

In `@apps/site/next.config.mjs` around lines 193 - 198, The default
allowedDevOrigins includes a hardcoded LAN IP (192.168.1.48) which grants a
private-network exception to all contributors; update the default used by the
allowedDevOrigins computation to only include loopback addresses (e.g.,
"localhost,127.0.0.1") and remove the 192.168.1.48 entry so individuals must opt
into additional hosts via ALLOWED_DEV_ORIGINS; keep the existing
split/map/filter logic around the allowedDevOrigins constant unchanged.
🤖 Prompt for all review comments with AI agents
Verify each finding against the current code and only fix it if needed.

Inline comments:
In `@apps/docs/package.json`:
- Around line 9-11: The npm "start" script currently runs "next start" which
defaults to port 3000; update the "start" entry in package.json (the "start"
script) to include the same port flag as "dev" by appending "--port 3001" so
CI/Playwright will find the server at http://localhost:3001.

In `@apps/eclipse/package.json`:
- Around line 8-10: Update the package.json "start" script so it uses the same
port as the "dev" script (port 3003) to maintain consistency; locate the "dev"
and "start" entries in package.json and change the "start" script from "next
start" to include "--port 3003" (i.e., "next start --port 3003") so both scripts
run on the same port.

In `@apps/eclipse/src/app/`(design-system)/sitemap.ts:
- Around line 7-10: The baseUrl assignment uses a ternary that tests
NEXT_PUBLIC_SITE_URL || VERCEL_URL but then only interpolates VERCEL_URL,
causing an invalid URL when NEXT_PUBLIC_SITE_URL is set and VERCEL_URL is
undefined; fix the baseUrl logic in sitemap.ts by first selecting a single host
fallback (e.g., host = process.env.NEXT_PUBLIC_SITE_URL ||
process.env.VERCEL_URL) and then use that host in the conditional and in the
https template (or fall back to 'http://localhost:3003') so the same resolved
host is used both for the test and the URL construction.

---

Nitpick comments:
In `@apps/site/next.config.mjs`:
- Around line 193-198: The default allowedDevOrigins includes a hardcoded LAN IP
(192.168.1.48) which grants a private-network exception to all contributors;
update the default used by the allowedDevOrigins computation to only include
loopback addresses (e.g., "localhost,127.0.0.1") and remove the 192.168.1.48
entry so individuals must opt into additional hosts via ALLOWED_DEV_ORIGINS;
keep the existing split/map/filter logic around the allowedDevOrigins constant
unchanged.

ℹ️ Review info
⚙️ Run configuration

Configuration used: Path: .coderabbit.yaml

Review profile: CHILL

Plan: Pro

Run ID: e2f34b38-138f-4bb9-84c6-61d8098edd6f

📥 Commits

Reviewing files that changed from the base of the PR and between d0eaf3f and 6a4dd8f.

⛔ Files ignored due to path filters (284)
  • apps/site/public/about-mcp-servers-and-how-we-built-one-for-prisma/imgs/03cc8051d3cdfcabcb6037fcb5fbe1d33856fc99-1816x1400.png is excluded by !**/*.png
  • apps/site/public/about-mcp-servers-and-how-we-built-one-for-prisma/imgs/1a9c595ed52f76150075536f39a1d00a014da6b1-1950x1240.png is excluded by !**/*.png
  • apps/site/public/about-mcp-servers-and-how-we-built-one-for-prisma/imgs/39eadb7214d14e787cf74adbcbd9940f6cdb4ae2-2888x2644.png is excluded by !**/*.png
  • apps/site/public/about-mcp-servers-and-how-we-built-one-for-prisma/imgs/5a5b498ea72ab4a0969ed268408ef95d6f301d53-2888x1372.png is excluded by !**/*.png
  • apps/site/public/about-mcp-servers-and-how-we-built-one-for-prisma/imgs/cbb0879b85e332bad731a1ca4c514d7c66ea9616-2888x1372.png is excluded by !**/*.png
  • apps/site/public/about-mcp-servers-and-how-we-built-one-for-prisma/imgs/e7b3db57367968f0458172fb2f8bfa532b82f7ed-2068x1600.png is excluded by !**/*.png
  • apps/site/public/about-mcp-servers-and-how-we-built-one-for-prisma/imgs/hero-af7a5b40501028b64219b2144f7b5c03723c4d99-844x474.svg is excluded by !**/*.svg
  • apps/site/public/about-mcp-servers-and-how-we-built-one-for-prisma/imgs/meta-c7ef9462464563ecc68ddf667e18dbef71f9f4fd-1266x711.png is excluded by !**/*.png
  • apps/site/public/accelerate-ga-release-i9cqm6bsf2g6/imgs/48bf68ea87d144f63f476efc98b9ba9d5ccb29a8-400x400.jpg is excluded by !**/*.jpg
  • apps/site/public/accelerate-ga-release-i9cqm6bsf2g6/imgs/832974c6ad7e1bb0e8ca928e5d1a0b58ccfe8220-800x800.jpg is excluded by !**/*.jpg
  • apps/site/public/accelerate-ga-release-i9cqm6bsf2g6/imgs/formbricks.svg is excluded by !**/*.svg
  • apps/site/public/accelerate-ga-release-i9cqm6bsf2g6/imgs/hero-de83f5f843f2a86abd05659c94c3069e7577a0f5-844x474.svg is excluded by !**/*.svg
  • apps/site/public/accelerate-ga-release-i9cqm6bsf2g6/imgs/logo-cal.svg is excluded by !**/*.svg
  • apps/site/public/accelerate-ga-release-i9cqm6bsf2g6/imgs/meta-42554fa75736c00b0ca55e1e440dde26f43dcb3f-1266x711.png is excluded by !**/*.png
  • apps/site/public/accelerate-ipv6-first/imgs/hero-248d5719caeee73ee2c7f94a7d194de949af1524-844x475.svg is excluded by !**/*.svg
  • apps/site/public/accelerate-ipv6-first/imgs/meta-b5bac6d735ee17d003b0a06190a5fa5c0e3fcc15-1266x713.png is excluded by !**/*.png
  • apps/site/public/accelerate-preview-release-ab229e69ed2/imgs/connection-pool-located-in-the-database-region.png is excluded by !**/*.png
  • apps/site/public/accelerate-preview-release-ab229e69ed2/imgs/global-cache.png is excluded by !**/*.png
  • apps/site/public/accelerate-preview-release-ab229e69ed2/imgs/hero-587aeef34568af2258cd4e5f0453710b0b94259c-844x474.svg is excluded by !**/*.svg
  • apps/site/public/accelerate-preview-release-ab229e69ed2/imgs/meta-3a75c0ed5f8837980765d5b7589367216653d6b7-1266x711.png is excluded by !**/*.png
  • apps/site/public/accelerate-static-ip-support/imgs/14f0c87eaa0bb42137006d8f8b0ad16b23ac648b-2960x988.png is excluded by !**/*.png
  • apps/site/public/accelerate-static-ip-support/imgs/150247eeac00c5b575e06024aec82d5bf08eb57e-2960x1406.png is excluded by !**/*.png
  • apps/site/public/accelerate-static-ip-support/imgs/3be45327e6177e94ffb2739a1face51226c6ce5f-2572x1570.png is excluded by !**/*.png
  • apps/site/public/accelerate-static-ip-support/imgs/5fba5bb200c4418e360b6a4114e3a0d3c16d7fab-791x344.png is excluded by !**/*.png
  • apps/site/public/accelerate-static-ip-support/imgs/970ae13572758d9962b6cc0b72b7e5a8c1af341b-2978x1976.png is excluded by !**/*.png
  • apps/site/public/accelerate-static-ip-support/imgs/d1f333f72a4431083fafc0eb1f25ba8c3c7203b6-1480x703.png is excluded by !**/*.png
  • apps/site/public/accelerate-static-ip-support/imgs/hero-06da453a2597f2571d34972ec912ad3c32f37ba6-844x474.svg is excluded by !**/*.svg
  • apps/site/public/accelerate-static-ip-support/imgs/meta-9a5f27696242c051a689abed3d4b7099a8145301-1200x674.png is excluded by !**/*.png
  • apps/site/public/advanced-database-schema-management-with-atlas-and-prisma-orm/imgs/hero-6ad0def91299fbf2a745f528d83a194350d0ee74-844x475.svg is excluded by !**/*.svg
  • apps/site/public/advanced-database-schema-management-with-atlas-and-prisma-orm/imgs/meta-862a4191726cfb1bcc2e53bc83e377e1af47cd5d-1200x675.png is excluded by !**/*.png
  • apps/site/public/all-you-need-to-know-about-apollo-client-2-7e27e36d62fd/imgs/hero-ebd9548e6d9cfb33c4e35eac48e11a80532a8d30-1440x960.jpg is excluded by !**/*.jpg
  • apps/site/public/ambassador-program-nxkwgcgnuvfx/imgs/hero-1bdf6237d95ded8d448f28db203012147fdcd39e-846x426.png is excluded by !**/*.png
  • apps/site/public/ambassador-program-nxkwgcgnuvfx/imgs/meta-de28b5e0df55c52078065ee2ae0b44d6cdf0da1e-1692x852.png is excluded by !**/*.png
  • apps/site/public/amplication-customer-story-nmlkbnlllxnn/imgs/159914408-83d5bddb-e3e7-46fa-9d47-f247ce42c68b.jpeg is excluded by !**/*.jpeg
  • apps/site/public/amplication-customer-story-nmlkbnlllxnn/imgs/amplication-prisma-diagram2.png is excluded by !**/*.png
  • apps/site/public/amplication-customer-story-nmlkbnlllxnn/imgs/amplication-ui.png is excluded by !**/*.png
  • apps/site/public/amplication-customer-story-nmlkbnlllxnn/imgs/hero-b1fb9ec0c8fca054011688621bfe51ea1836af10-844x474.svg is excluded by !**/*.svg
  • apps/site/public/amplication-customer-story-nmlkbnlllxnn/imgs/meta-4baa84e48a0da8e13e23367137d5a17515119aaf-2881x1620.png is excluded by !**/*.png
  • apps/site/public/announcing-accelerate-usrvpi6sfkv4/imgs/hero-9c6258461d73719cebc60136dd4e976d79306dcb-845x475.svg is excluded by !**/*.svg
  • apps/site/public/announcing-accelerate-usrvpi6sfkv4/imgs/meta-25afee16878423e24c7aff2bb3fe49a433996d03-1200x631.png is excluded by !**/*.png
  • apps/site/public/announcing-discord-1liaops7lxv9/imgs/discord-screenshot.png is excluded by !**/*.png
  • apps/site/public/announcing-discord-1liaops7lxv9/imgs/hero-7ae00282956a1f6a68f815b4cffee5ee1b1ce934-844x474.svg is excluded by !**/*.svg
  • apps/site/public/announcing-discord-1liaops7lxv9/imgs/meta-388b596e6a40f7eeaf42604a4645c93dd051af6a-1267x712.png is excluded by !**/*.png
  • apps/site/public/announcing-on-demand-cache-invalidation-for-prisma-accelerate/imgs/46cf59b4dcf666cc403923788d01a5eb0c959970-870x804.gif is excluded by !**/*.gif
  • apps/site/public/announcing-on-demand-cache-invalidation-for-prisma-accelerate/imgs/hero-4100fa47bccf0620564331dda7e0c65bcd069ef2-844x474.svg is excluded by !**/*.svg
  • apps/site/public/announcing-on-demand-cache-invalidation-for-prisma-accelerate/imgs/meta-40c9facc0c25985278c069ade326008e14baef9a-1266x711.png is excluded by !**/*.png
  • apps/site/public/announcing-prisma-2-n0v98rzc8br1/imgs/5YEs4IC.png is excluded by !**/*.png
  • apps/site/public/announcing-prisma-2-n0v98rzc8br1/imgs/YWeTRfU.mp4 is excluded by !**/*.mp4
  • apps/site/public/announcing-prisma-2-n0v98rzc8br1/imgs/cQRivY4.png is excluded by !**/*.png
  • apps/site/public/announcing-prisma-2-n0v98rzc8br1/imgs/hero-11436ec45c7ccbc812212d1d6d7c8794d9514f2f-1692x852.jpg is excluded by !**/*.jpg
  • apps/site/public/announcing-prisma-2-n0v98rzc8br1/imgs/kPGJU6j.png is excluded by !**/*.png
  • apps/site/public/announcing-prisma-2-zq1s745db8i5/imgs/AG34kGB.png is excluded by !**/*.png
  • apps/site/public/announcing-prisma-2-zq1s745db8i5/imgs/bFUA7LC.png is excluded by !**/*.png
  • apps/site/public/announcing-prisma-2-zq1s745db8i5/imgs/gqbGz7b.png is excluded by !**/*.png
  • apps/site/public/announcing-prisma-2-zq1s745db8i5/imgs/hero-34a26858c7de3cad0d84a376d12b58b82ee10da0-1200x630.png is excluded by !**/*.png
  • apps/site/public/announcing-prisma-2-zq1s745db8i5/imgs/l1Jg54Y.png is excluded by !**/*.png
  • apps/site/public/announcing-prisma-6-18-0/imgs/9393decb8beaf4ed3d4df4be8ab04809a83dcdfc-2880x1664.png is excluded by !**/*.png
  • apps/site/public/announcing-prisma-6-18-0/imgs/hero-6903d477604982ce17726b525221e1e1de6eb1a1-844x474.svg is excluded by !**/*.svg
  • apps/site/public/announcing-prisma-6-18-0/imgs/meta-85fc09231b7180336b63d1da7fe47a2520db99f5-1266x711.png is excluded by !**/*.png
  • apps/site/public/announcing-prisma-6-19-0/imgs/000a48b9be0569e18d23dd3c38c25fb2af113b9e-3840x1632.png is excluded by !**/*.png
  • apps/site/public/announcing-prisma-6-19-0/imgs/hero-21b965afb8b247bc0f088a71d844d66b64d5da38-844x474.svg is excluded by !**/*.svg
  • apps/site/public/announcing-prisma-6-19-0/imgs/meta-fab568a4879cfeb58a8405888c303ce5b6b279fb-1266x711.png is excluded by !**/*.png
  • apps/site/public/announcing-prisma-day-50cg22nn40qk/imgs/hero-d719c9276cc4c57665d4a32cc5fdae5b5bfcad50-1200x630.png is excluded by !**/*.png
  • apps/site/public/announcing-prisma-day-50cg22nn40qk/imgs/meta-eeacc461f1965ed958af330fc9dc93f635920b43-1200x630.png is excluded by !**/*.png
  • apps/site/public/announcing-prisma-orm-7-0-0/imgs/0a893742a7f9fca80962be7d17ee7582d53cb322-400x400.jpg is excluded by !**/*.jpg
  • apps/site/public/announcing-prisma-orm-7-0-0/imgs/131c271750cb6bc7116f609982eef70a7efdca21-400x400.png is excluded by !**/*.png
  • apps/site/public/announcing-prisma-orm-7-0-0/imgs/bae4c44f9bed7c0c255b338cf93b4e498ef540a8-400x400.jpg is excluded by !**/*.jpg
  • apps/site/public/announcing-prisma-orm-7-0-0/imgs/hero-bbef45a84ff4bd03130bed3589b7d240c29ce325-844x474.svg is excluded by !**/*.svg
  • apps/site/public/announcing-prisma-orm-7-0-0/imgs/meta-6b30aeef18d38ef00eb7b90286801660d84a9a0e-1266x711.png is excluded by !**/*.png
  • apps/site/public/announcing-prisma-orm-7-2-0/imgs/hero-51b054f6d21361fc56212a05c7efd36b78e62ff3-844x474.svg is excluded by !**/*.svg
  • apps/site/public/announcing-prisma-orm-7-2-0/imgs/meta-e05db51030f5b58e706489c501174d1d00eb99ec-1266x711.png is excluded by !**/*.png
  • apps/site/public/announcing-prisma-playground-xeywknkj0e1p/imgs/hero-1735a3ccb59d21fc0d32410b0b3ac83242fcd020-844x474.svg is excluded by !**/*.svg
  • apps/site/public/announcing-prisma-playground-xeywknkj0e1p/imgs/meta-470fec1fa04cf5fccadfadd70b449d857ee62116-1688x948.png is excluded by !**/*.png
  • apps/site/public/announcing-prisma-playground-xeywknkj0e1p/imgs/playground-1.png is excluded by !**/*.png
  • apps/site/public/announcing-prisma-playground-xeywknkj0e1p/imgs/playground-2.png is excluded by !**/*.png
  • apps/site/public/announcing-prisma-playground-xeywknkj0e1p/imgs/playground-3.png is excluded by !**/*.png
  • apps/site/public/announcing-prisma-postgres-early-access/imgs/022ffab1873aba7d53ea1f10ab731171741b2a0e-200x200.png is excluded by !**/*.png
  • apps/site/public/announcing-prisma-postgres-early-access/imgs/13131.png is excluded by !**/*.png
  • apps/site/public/announcing-prisma-postgres-early-access/imgs/178696d9a18e3803db87032122e7ade619554c4e-2888x1236.png is excluded by !**/*.png
  • apps/site/public/announcing-prisma-postgres-early-access/imgs/207787ea1a4636a6c13963cf3211c538beb8301a-1734x678.png is excluded by !**/*.png
  • apps/site/public/announcing-prisma-postgres-early-access/imgs/36a57a880128c93e52193c963fc0c9889ea9df5a-1282x504.png is excluded by !**/*.png
  • apps/site/public/announcing-prisma-postgres-early-access/imgs/8cf5361a40fdc079b0db4b848483b59f2e99d50b-1740x232.png is excluded by !**/*.png
  • apps/site/public/announcing-prisma-postgres-early-access/imgs/90776da4721482b7372b74a8ace42afe009d86d2-1610x886.png is excluded by !**/*.png
  • apps/site/public/announcing-prisma-postgres-early-access/imgs/9b447d300530904e726ef326c34e816553e605b8-1080x838.png is excluded by !**/*.png
  • apps/site/public/announcing-prisma-postgres-early-access/imgs/beb4ebfa5c4f39105629e6aadc77554eeaea256d-1204x274.png is excluded by !**/*.png
  • apps/site/public/announcing-prisma-postgres-early-access/imgs/c356d781c1816fad242fac28520fbe6199a9deae-2888x1858.png is excluded by !**/*.png
  • apps/site/public/announcing-prisma-postgres-early-access/imgs/c5430a6cd6e3437dc71d217e3bee9d3b4755788c-2510x1290.png is excluded by !**/*.png
  • apps/site/public/announcing-prisma-postgres-early-access/imgs/d7a8980c3be1841af6c46fee0683b93179052358-1114x592.png is excluded by !**/*.png
  • apps/site/public/announcing-prisma-postgres-early-access/imgs/ebc7c8fd2fb5b811ead970edee0ae69150f6e25c-2888x1858.png is excluded by !**/*.png
  • apps/site/public/announcing-prisma-postgres-early-access/imgs/f65bc24502ef9b28f0d5c7f3716e643015c62099-690x362.png is excluded by !**/*.png
  • apps/site/public/announcing-prisma-postgres-early-access/imgs/hero-153cb5a3d4a5447955824c28ae43788e7c407adf-633x356.png is excluded by !**/*.png
  • apps/site/public/announcing-prisma-postgres-early-access/imgs/meta-6796d74a842eae9429254e7ed11b483985ba4e50-1266x711.png is excluded by !**/*.png
  • apps/site/public/announcing-prisma-postgres-for-ai-coding-agents/imgs/ed3b8387fd31f1db39c0fa35305107c611a6c9a4-1444x434.png is excluded by !**/*.png
  • apps/site/public/announcing-prisma-postgres-for-ai-coding-agents/imgs/hero-6ad1b7b4a851a45e91418d443573f0c38accc78d-844x474.svg is excluded by !**/*.svg
  • apps/site/public/announcing-prisma-postgres-for-ai-coding-agents/imgs/meta-24be732ef3e8f019820d370b8a5f74ab14170fdc-1266x711.png is excluded by !**/*.png
  • apps/site/public/announcing-prisma-s-mcp-server-vibe-code-with-prisma-postgres/imgs/hero-7d96f16b30c6971db0da1e546a13a985ec47f6f3-844x474.svg is excluded by !**/*.svg
  • apps/site/public/announcing-prisma-s-mcp-server-vibe-code-with-prisma-postgres/imgs/meta-0e15503386e31edce5fd389f4b2ee52b0f71a162-1266x711.png is excluded by !**/*.png
  • apps/site/public/announcing-the-release-of-nexus-schema-v1-b5eno5g08d0b/imgs/hero-807c11a11df0567a4b2ac96a0cac738b916d7416-1692x852.png is excluded by !**/*.png
  • apps/site/public/announcing-the-release-of-nexus-schema-v1-b5eno5g08d0b/imgs/meta-29585f8afef1e4c94930404a027807ca6ec0c2e3-2398x1208.png is excluded by !**/*.png
  • apps/site/public/announcing-the-release-of-nexus-schema-v1-b5eno5g08d0b/imgs/nexus-jsdoc.png is excluded by !**/*.png
  • apps/site/public/announcing-typedsql-make-your-raw-sql-queries-type-safe-with-prisma-orm/imgs/hero-9d1c710f959ab75107576ad53720a7731c75797a-844x474.png is excluded by !**/*.png
  • apps/site/public/announcing-typedsql-make-your-raw-sql-queries-type-safe-with-prisma-orm/imgs/meta-6212889ff7d56ad41636c0f7938159b1fd740651-1688x948.png is excluded by !**/*.png
  • apps/site/public/announcing-upcoming-course-8s41wdqrlgc7/imgs/hero-c4f6ff1ce0178636ddc08d50f408c042800bac92-1270x714.png is excluded by !**/*.png
  • apps/site/public/authors/aidan-mcalister.png is excluded by !**/*.png
  • apps/site/public/authors/alberto-perdomo.png is excluded by !**/*.png
  • apps/site/public/authors/alex-emerich.png is excluded by !**/*.png
  • apps/site/public/authors/alex-ruheni.png is excluded by !**/*.png
  • apps/site/public/authors/andrew-carlson.png is excluded by !**/*.png
  • apps/site/public/authors/ankur-datta.png is excluded by !**/*.png
  • apps/site/public/authors/charly-poly.png is excluded by !**/*.png
  • apps/site/public/authors/daniel-norman.png is excluded by !**/*.png
  • apps/site/public/authors/dave-feldman.png is excluded by !**/*.png
  • apps/site/public/authors/default.svg is excluded by !**/*.svg
  • apps/site/public/authors/dennis-walsh.png is excluded by !**/*.png
  • apps/site/public/authors/etel-sverdlov.png is excluded by !**/*.png
  • apps/site/public/authors/herve-labas.png is excluded by !**/*.png
  • apps/site/public/authors/james-ritchie.png is excluded by !**/*.png
  • apps/site/public/authors/jan-piotrowski.png is excluded by !**/*.png
  • apps/site/public/authors/jillian-winter.png is excluded by !**/*.png
  • apps/site/public/authors/johannes-schickling.png is excluded by !**/*.png
  • apps/site/public/authors/jon-harrell.png is excluded by !**/*.png
  • apps/site/public/authors/josh-mcleod.png is excluded by !**/*.png
  • apps/site/public/authors/justin-ellingwood.png is excluded by !**/*.png
  • apps/site/public/authors/luan-van-der-westhuizen.png is excluded by !**/*.png
  • apps/site/public/authors/mahmoud-abdelwahab.png is excluded by !**/*.png
  • apps/site/public/authors/marc-hess.png is excluded by !**/*.png
  • apps/site/public/authors/martin-janse-van-rensburg.png is excluded by !**/*.png
  • apps/site/public/authors/michelle-greer.png is excluded by !**/*.png
  • apps/site/public/authors/mike-hartington.png is excluded by !**/*.png
  • apps/site/public/authors/nikolas-burk.png is excluded by !**/*.png
  • apps/site/public/authors/nitin-gupta.png is excluded by !**/*.png
  • apps/site/public/authors/petra-donka.png is excluded by !**/*.png
  • apps/site/public/authors/ryan-chenkie.png is excluded by !**/*.png
  • apps/site/public/authors/sam-bhatti.png is excluded by !**/*.png
  • apps/site/public/authors/shane-neubauer.png is excluded by !**/*.png
  • apps/site/public/authors/sonia-lomo.png is excluded by !**/*.png
  • apps/site/public/authors/soren-bramer-schmidt.png is excluded by !**/*.png
  • apps/site/public/authors/spiros-martzoukos.png is excluded by !**/*.png
  • apps/site/public/authors/stephen-king.png is excluded by !**/*.png
  • apps/site/public/authors/tasin-ishmam.png is excluded by !**/*.png
  • apps/site/public/authors/tim-griesser.png is excluded by !**/*.png
  • apps/site/public/authors/tim-suchanek.png is excluded by !**/*.png
  • apps/site/public/authors/tyler-benfield.png is excluded by !**/*.png
  • apps/site/public/authors/uri-goldshtein.png is excluded by !**/*.png
  • apps/site/public/authors/vladi-stevanovic.png is excluded by !**/*.png
  • apps/site/public/authors/will-madden.png is excluded by !**/*.png
  • apps/site/public/aws-marketplace/imgs/hero-f97462343e60a5322d236b809eaf9555aa725651-844x474.svg is excluded by !**/*.svg
  • apps/site/public/aws-marketplace/imgs/meta-328edbc9eaafbce2d4e09174ee22a13f77e758d3-1266x711.png is excluded by !**/*.png
  • apps/site/public/backend-prisma-typescript-orm-with-postgresql-auth-mngp1ps7kip4/imgs/hero-9f73d35216a42b2bb796a971053669fbc90e36ee-846x426.svg is excluded by !**/*.svg
  • apps/site/public/backend-prisma-typescript-orm-with-postgresql-auth-mngp1ps7kip4/imgs/meta-9eae0d75afddb1fce65c68320479268f4cdcffd3-1692x852.png is excluded by !**/*.png
  • apps/site/public/backend-prisma-typescript-orm-with-postgresql-auth-mngp1ps7kip4/imgs/modern-backend-3-auth-flow.png is excluded by !**/*.png
  • apps/site/public/backend-prisma-typescript-orm-with-postgresql-data-modeling-tsjs1ps7kip1/imgs/grading-app-schema.png is excluded by !**/*.png
  • apps/site/public/backend-prisma-typescript-orm-with-postgresql-data-modeling-tsjs1ps7kip1/imgs/hero-df67ee11927bde800c1ba033b94e182ab3565110-1692x852.png is excluded by !**/*.png
  • apps/site/public/backend-prisma-typescript-orm-with-postgresql-deployment-bbba1ps7kip5/imgs/hero-d3aa9c3e0b081fe4d675e11574d1bbcf8ea9de46-1692x852.png is excluded by !**/*.png
  • apps/site/public/backend-prisma-typescript-orm-with-postgresql-deployment-bbba1ps7kip5/imgs/modern-backend-4-actions-enable.png is excluded by !**/*.png
  • apps/site/public/backend-prisma-typescript-orm-with-postgresql-deployment-bbba1ps7kip5/imgs/modern-backend-4-actions-tab.png is excluded by !**/*.png
  • apps/site/public/backend-prisma-typescript-orm-with-postgresql-deployment-bbba1ps7kip5/imgs/modern-backend-4-github-new-secret.png is excluded by !**/*.png
  • apps/site/public/backend-prisma-typescript-orm-with-postgresql-deployment-bbba1ps7kip5/imgs/modern-backend-4-github-no-secrets-arrow.png is excluded by !**/*.png
  • apps/site/public/backend-prisma-typescript-orm-with-postgresql-deployment-bbba1ps7kip5/imgs/modern-backend-4-github-secrets.png is excluded by !**/*.png
  • apps/site/public/backend-prisma-typescript-orm-with-postgresql-deployment-bbba1ps7kip5/imgs/modern-backend-4-heroku-api-key.png is excluded by !**/*.png
  • apps/site/public/backend-prisma-typescript-orm-with-postgresql-deployment-bbba1ps7kip5/imgs/modern-backend-4-workflow-run-deploy-job.png is excluded by !**/*.png
  • apps/site/public/backend-prisma-typescript-orm-with-postgresql-deployment-bbba1ps7kip5/imgs/modern-backend-4-workflow-run-details.png is excluded by !**/*.png
  • apps/site/public/backend-prisma-typescript-orm-with-postgresql-deployment-bbba1ps7kip5/imgs/modern-backend-4-workflow-run-test-job.png is excluded by !**/*.png
  • apps/site/public/backend-prisma-typescript-orm-with-postgresql-deployment-bbba1ps7kip5/imgs/modern-backend-4-workflow-run.png is excluded by !**/*.png
  • apps/site/public/backend-prisma-typescript-orm-with-postgresql-rest-api-validation-dcba1ps7kip3/imgs/hero-21fe21324bb4e62111c88b37b71091676e29f616-1692x852.png is excluded by !**/*.png
  • apps/site/public/benefits-and-challenges-of-caching-database-query-results-x2s9ei21e8kq/imgs/1-a-first-request.png is excluded by !**/*.png
  • apps/site/public/benefits-and-challenges-of-caching-database-query-results-x2s9ei21e8kq/imgs/1-b-subsequent.png is excluded by !**/*.png
  • apps/site/public/benefits-and-challenges-of-caching-database-query-results-x2s9ei21e8kq/imgs/2-a-with-cache.png is excluded by !**/*.png
  • apps/site/public/benefits-and-challenges-of-caching-database-query-results-x2s9ei21e8kq/imgs/2-a-without-cache.png is excluded by !**/*.png
  • apps/site/public/benefits-and-challenges-of-caching-database-query-results-x2s9ei21e8kq/imgs/3-a-with-cache.png is excluded by !**/*.png
  • apps/site/public/benefits-and-challenges-of-caching-database-query-results-x2s9ei21e8kq/imgs/3-a-without-cache.png is excluded by !**/*.png
  • apps/site/public/benefits-and-challenges-of-caching-database-query-results-x2s9ei21e8kq/imgs/4-a-cache-syncronization.png is excluded by !**/*.png
  • apps/site/public/benefits-and-challenges-of-caching-database-query-results-x2s9ei21e8kq/imgs/5-a-granularity.png is excluded by !**/*.png
  • apps/site/public/benefits-and-challenges-of-caching-database-query-results-x2s9ei21e8kq/imgs/6-cache-utilization.png is excluded by !**/*.png
  • apps/site/public/benefits-and-challenges-of-caching-database-query-results-x2s9ei21e8kq/imgs/7-cache-avalanche.png is excluded by !**/*.png
  • apps/site/public/benefits-and-challenges-of-caching-database-query-results-x2s9ei21e8kq/imgs/hero-ce90e81e707c3b5735077783e1db72216b8a56dd-844x474.svg is excluded by !**/*.svg
  • apps/site/public/benefits-and-challenges-of-caching-database-query-results-x2s9ei21e8kq/imgs/meta-72680f73691cdf86b51087621b4b0e79ac12fde7-1266x712.png is excluded by !**/*.png
  • apps/site/public/bfg/imgs/hero-9e46446f32d354d43e61580e8fc6f1855839e4e5-844x474.svg is excluded by !**/*.svg
  • apps/site/public/bfg/imgs/meta-48f848dd9b8582c9e4ce13d14f2001a485d281d3-1266x711.png is excluded by !**/*.png
  • apps/site/public/bringing-prisma-orm-to-react-native-and-expo/imgs/hero-bbb1e7f6b0f7bef3d318fac96652548cad0ef0b5-844x474.svg is excluded by !**/*.svg
  • apps/site/public/bringing-prisma-orm-to-react-native-and-expo/imgs/meta-289f00bdde5d5f308f3faa684d09f647974d77b6-1200x630.png is excluded by !**/*.png
  • apps/site/public/build-an-app-with-svelte-and-typescript-pzdy3t93qatd/imgs/hero-0e8c20420d860a393f68694b8bab707306822df3-1692x852.png is excluded by !**/*.png
  • apps/site/public/build-an-app-with-svelte-and-typescript-pzdy3t93qatd/imgs/meta-711f2d3f2094907c22c0ef2dd88e69992f950026-2400x1256.png is excluded by !**/*.png
  • apps/site/public/build-an-app-with-svelte-and-typescript-pzdy3t93qatd/imgs/svelte-typescript-1.png is excluded by !**/*.png
  • apps/site/public/build-an-app-with-svelte-and-typescript-pzdy3t93qatd/imgs/svelte-typescript-2.png is excluded by !**/*.png
  • apps/site/public/build-an-app-with-svelte-and-typescript-pzdy3t93qatd/imgs/svelte-typescript-3.png is excluded by !**/*.png
  • apps/site/public/build-an-app-with-svelte-and-typescript-pzdy3t93qatd/imgs/svelte-typescript-4.png is excluded by !**/*.png
  • apps/site/public/build-an-app-with-svelte-and-typescript-pzdy3t93qatd/imgs/svelte-typescript-5.png is excluded by !**/*.png
  • apps/site/public/build-an-app-with-svelte-and-typescript-pzdy3t93qatd/imgs/svelte-typescript-6.png is excluded by !**/*.png
  • apps/site/public/build-an-app-with-svelte-and-typescript-pzdy3t93qatd/imgs/svelte-typescript-7.png is excluded by !**/*.png
  • apps/site/public/build-an-app-with-svelte-and-typescript-pzdy3t93qatd/imgs/svelte-typescript-8.png is excluded by !**/*.png
  • apps/site/public/build-applications-at-the-edge-with-prisma-orm-and-cloudflare-d1-preview/imgs/0464e1fee8099d997e95b6aaa24a13ef5d40cbb8-1950x1392.png is excluded by !**/*.png
  • apps/site/public/build-applications-at-the-edge-with-prisma-orm-and-cloudflare-d1-preview/imgs/1200px-Cloudflare_Logo.png is excluded by !**/*.png
  • apps/site/public/build-applications-at-the-edge-with-prisma-orm-and-cloudflare-d1-preview/imgs/a695edcc461f4bc01a9eac9d3a103d8ef2ab9dfd-1960x1386.png is excluded by !**/*.png
  • apps/site/public/build-applications-at-the-edge-with-prisma-orm-and-cloudflare-d1-preview/imgs/dece55108fc5c399e5466b8dc5d73e8e9509cab0-1480x1696.png is excluded by !**/*.png
  • apps/site/public/build-applications-at-the-edge-with-prisma-orm-and-cloudflare-d1-preview/imgs/hero-66fc05379af15d65fd3dd6d792c9a575db648895-844x474.png is excluded by !**/*.png
  • apps/site/public/build-applications-at-the-edge-with-prisma-orm-and-cloudflare-d1-preview/imgs/meta-9804cde42d974d63b5a3b8bc951c13aeb9187101-1266x711.png is excluded by !**/*.png
  • apps/site/public/caching-database-queries-with-prisma-accelerate/imgs/09cee9fb07d0f6190228e118596eed223a1ea99e-2888x1110.png is excluded by !**/*.png
  • apps/site/public/caching-database-queries-with-prisma-accelerate/imgs/8b295baeeaf620323649d054718900fb542b6042-2888x1110.png is excluded by !**/*.png
  • apps/site/public/caching-database-queries-with-prisma-accelerate/imgs/ff3f792f22982a08e1ebad1e81b0cc0d43c30b06-2888x1110.png is excluded by !**/*.png
  • apps/site/public/caching-database-queries-with-prisma-accelerate/imgs/hero-69cd8d277e2307eb14396450817be41bb1e7c305-844x474.svg is excluded by !**/*.svg
  • apps/site/public/caching-database-queries-with-prisma-accelerate/imgs/meta-959743e064c1771e65e078aa6ebee2b402c28578-1266x711.png is excluded by !**/*.png
  • apps/site/public/client-extensions-ga-4g4yiu8eosbb/imgs/hero-b404c12ca7de2f9288368dacbce578b790bfd66d-844x474.svg is excluded by !**/*.svg
  • apps/site/public/client-extensions-ga-4g4yiu8eosbb/imgs/meta-50e7e57ea5967ad67ce89e682aca57f5e19fd65a-1266x712.png is excluded by !**/*.png
  • apps/site/public/client-extensions-preview-8t3w27xkrxxn/imgs/hero-1b0474b02ed0759af1c6e3f3bcba5d4ebb1d970b-844x474.svg is excluded by !**/*.svg
  • apps/site/public/client-extensions-preview-8t3w27xkrxxn/imgs/meta-5ca8711a05c2f835cfce511739e46b5f6df982cd-1266x712.png is excluded by !**/*.png
  • apps/site/public/cloud-connectivity-report-2024/imgs/08374161212a38430c333ecc3e64874e450f36db-1484x304.png is excluded by !**/*.png
  • apps/site/public/cloud-connectivity-report-2024/imgs/2bf416687abd9defbaac092404b907ed69507e3e-1484x406.png is excluded by !**/*.png
  • apps/site/public/cloud-connectivity-report-2024/imgs/2c4d00720394b5b0182ffa107c8facdf644c45c2-1484x508.png is excluded by !**/*.png
  • apps/site/public/cloud-connectivity-report-2024/imgs/5851e5907dea7d40565cba4e2b38ab42dbd74c28-1200x630.png is excluded by !**/*.png
  • apps/site/public/cloud-connectivity-report-2024/imgs/647674d0cfd58e8d406c45cdc75172dfc013cdc7-1480x778.png is excluded by !**/*.png
  • apps/site/public/cloud-connectivity-report-2024/imgs/76f8721b44540468af6c2c2d7335bf9691c8bedb-1200x630.png is excluded by !**/*.png
  • apps/site/public/cloud-connectivity-report-2024/imgs/8eb86e862d6739302c7bc6209ef01b2f157146f3-1480x302.png is excluded by !**/*.png
  • apps/site/public/cloud-connectivity-report-2024/imgs/9c4d4c5ad6bf475c30cc2b06dff9e6c0f484b7f1-1480x302.png is excluded by !**/*.png
  • apps/site/public/cloud-connectivity-report-2024/imgs/db7937e7875b49f2e6e4c5369db024db349c0fd6-1484x304.png is excluded by !**/*.png
  • apps/site/public/cloud-connectivity-report-2024/imgs/hero-cb3b5906c2776d8457722f79222e915cd08aa6a3-844x474.svg is excluded by !**/*.svg
  • apps/site/public/cloud-connectivity-report-2024/imgs/meta-4081c40e88b18cc130df73ce6102d5154c7ad39c-1200x630.png is excluded by !**/*.png
  • apps/site/public/cloudflare-partnership-qerefgvwirjq/imgs/hero-726190b9f3c5c097cc8cfa5dc08581458138758f-844x474.svg is excluded by !**/*.svg
  • apps/site/public/cloudflare-partnership-qerefgvwirjq/imgs/meta-c3dfb4dc0d8bc7d99b379b6e68668c6135aca53c-1266x711.png is excluded by !**/*.png
  • apps/site/public/cloudflare-unikernels-and-bare-metal-life-of-a-prisma-postgres-query/imgs/06d5ac72c9f8596e6765f72475d6811a57c61947-4064x2334.png is excluded by !**/*.png
  • apps/site/public/cloudflare-unikernels-and-bare-metal-life-of-a-prisma-postgres-query/imgs/7cef11dd00cbe3b8940b3be286ce9080129e5d05-2960x1822.png is excluded by !**/*.png
  • apps/site/public/cloudflare-unikernels-and-bare-metal-life-of-a-prisma-postgres-query/imgs/8cf5361a40fdc079b0db4b848483b59f2e99d50b-1740x232.png is excluded by !**/*.png
  • apps/site/public/cloudflare-unikernels-and-bare-metal-life-of-a-prisma-postgres-query/imgs/b38aa9235dab3c4bbef178b0944da6f97a9c2c2f-660x852.png is excluded by !**/*.png
  • apps/site/public/cloudflare-unikernels-and-bare-metal-life-of-a-prisma-postgres-query/imgs/e6d5ed34c551a50fe047743347f2d0165d62f214-714x859.png is excluded by !**/*.png
  • apps/site/public/cloudflare-unikernels-and-bare-metal-life-of-a-prisma-postgres-query/imgs/hero-e23d2415c9dce256ee6090919392141e9da30678-844x474.svg is excluded by !**/*.svg
  • apps/site/public/cloudflare-unikernels-and-bare-metal-life-of-a-prisma-postgres-query/imgs/meta-b078a6114c23eb0c00322a230a463628f4799fb4-1266x711.png is excluded by !**/*.png
  • apps/site/public/cockroach-ga-5jrd9xvwqdyl/imgs/cockroach-diagram.png is excluded by !**/*.png
  • apps/site/public/cockroach-ga-5jrd9xvwqdyl/imgs/hero-ebf53ec190dab44f271d4f0dd1ad658507f55b66-844x474.svg is excluded by !**/*.svg
  • apps/site/public/cockroach-ga-5jrd9xvwqdyl/imgs/meta-77148d314c74789939fb2b2af2bf3f82378cebc0-1920x1080.png is excluded by !**/*.png
  • apps/site/public/cockroach-ga-5jrd9xvwqdyl/imgs/migration.png is excluded by !**/*.png
  • apps/site/public/cockroach-ga-5jrd9xvwqdyl/imgs/release-notes.png is excluded by !**/*.png
  • apps/site/public/cockroach-ga-5jrd9xvwqdyl/imgs/statements.png is excluded by !**/*.png
  • apps/site/public/compliance-reqs-complete/imgs/hero-d21f1c5e95d54f9016987dc7885b6b032c1bc140-844x474.svg is excluded by !**/*.svg
  • apps/site/public/compliance-reqs-complete/imgs/meta-457925aa50c548e3c000c94e5dab3874b4272046-1266x711.png is excluded by !**/*.png
  • apps/site/public/connect-your-apps-to-prisma-postgres-via-vercel-marketplace-integration/imgs/37841e4d757e5ec1c09e6285933fc7ec16ad1902-3248x2112.png is excluded by !**/*.png
  • apps/site/public/connect-your-apps-to-prisma-postgres-via-vercel-marketplace-integration/imgs/hero-b06562c14b921f9c72bd78bcd5b04717f20cf9e4-844x474.svg is excluded by !**/*.svg
  • apps/site/public/connect-your-apps-to-prisma-postgres-via-vercel-marketplace-integration/imgs/meta-1e5148009a4294ebba377f758ce1139e3c46bcef-1266x711.png is excluded by !**/*.png
  • apps/site/public/connections-edges-nodes-in-relay-758d358aa4c7/imgs/0*sPafc6eXHJvRSJhZ.png is excluded by !**/*.png
  • apps/site/public/connections-edges-nodes-in-relay-758d358aa4c7/imgs/hero-a86c8de527177e03b9e08b9f1f1522dc1debbc6d-559x361.png is excluded by !**/*.png
  • apps/site/public/connections-edges-nodes-in-relay-758d358aa4c7/imgs/meta-cc730c78d87244cb877764a6a4a850b2c9223871-1200x775.png is excluded by !**/*.png
  • apps/site/public/convergence/imgs/hero-532d75ec739a13ee528e8b2a085d47fc962a3ca7-840x472.png is excluded by !**/*.png
  • apps/site/public/convergence/imgs/meta-3963296cdd515c9ae5cb17379fcff0da144c7b35-1266x711.png is excluded by !**/*.png
  • apps/site/public/coo-announcement-aer1fgviirjb/imgs/hero-c79e2c7b7f4cd64f5be9677d4fab38140809b0f9-1267x711.png is excluded by !**/*.png
  • apps/site/public/data-platform-static-ips/imgs/hero-f9991a96b6b8ce0fa61dead528141fa1e8b911be-844x474.svg is excluded by !**/*.svg
  • apps/site/public/data-platform-static-ips/imgs/meta-725058cd14e118302aa8e56bbaf31e46436bfc91-1269x640.png is excluded by !**/*.png
  • apps/site/public/data-platform-static-ips/imgs/pdp-static-egress-demo.gif is excluded by !**/*.gif
  • apps/site/public/data-platform-static-ips/imgs/pdp-static-egress-project.gif is excluded by !**/*.gif
  • apps/site/public/database-access-in-react-server-components-r2xgk9aztgdf/imgs/hero-f388984fa1fe34f5d79d884f6f599c22a4107fa1-846x426.png is excluded by !**/*.png
  • apps/site/public/database-access-in-react-server-components-r2xgk9aztgdf/imgs/meta-8befd7df92cc32135332ef9c28b41e076e2c8998-1251x630.png is excluded by !**/*.png
  • apps/site/public/database-access-in-react-server-components-r2xgk9aztgdf/imgs/network-waterfall.png is excluded by !**/*.png
  • apps/site/public/database-access-in-react-server-components-r2xgk9aztgdf/imgs/server-components-demo.png is excluded by !**/*.png
  • apps/site/public/database-access-in-react-server-components-r2xgk9aztgdf/imgs/spotify-artist-details.png is excluded by !**/*.png
  • apps/site/public/database-access-in-react-server-components-r2xgk9aztgdf/imgs/traditional-and-server-components-comparison.png is excluded by !**/*.png
  • apps/site/public/database-vs-application-demystifying-join-strategies/imgs/14d97834abcc4a48970178b9357c95b7c69773e1-1242x1694.png is excluded by !**/*.png
  • apps/site/public/database-vs-application-demystifying-join-strategies/imgs/47ca5a5f744cde64f8caaa359a2870df758d3c91-3200x1256.png is excluded by !**/*.png
  • apps/site/public/database-vs-application-demystifying-join-strategies/imgs/aecb797ff9a4fec41786e1acfd8ea81be54ba073-404x571.png is excluded by !**/*.png
  • apps/site/public/database-vs-application-demystifying-join-strategies/imgs/ee53bcfbca9834771ff6856d9fcd6e77aef7bf04-1228x1708.png is excluded by !**/*.png
  • apps/site/public/database-vs-application-demystifying-join-strategies/imgs/hero-5fa4fcf8d00bbf21e0b169f955a09f79332fb75b-844x474.svg is excluded by !**/*.svg
  • apps/site/public/database-vs-application-demystifying-join-strategies/imgs/meta-3dd1f6419862f57459fa70702fabf854946e6e13-1266x711.png is excluded by !**/*.png
  • apps/site/public/datadx-event-recap-z5pcp6hzbz5m/imgs/hero-23097a272172cd3791887b9664ecd25e4dc65cff-843x474.svg is excluded by !**/*.svg
  • apps/site/public/datadx-event-recap-z5pcp6hzbz5m/imgs/meta-3155f43f9648d3e4eedd05759f69d6876b72d313-1265x711.png is excluded by !**/*.png
  • apps/site/public/datadx-manifesto-ikgyqj170k8h/imgs/hero-2e402be560690da1dd594236284a8efa71a8f82f-844x474.svg is excluded by !**/*.svg
  • apps/site/public/datadx-manifesto-ikgyqj170k8h/imgs/meta-96de5fd29833ae651da6ecc88c021bb9d84eba1b-1266x711.png is excluded by !**/*.png
  • apps/site/public/datadx-name-for-prismas-philosophy/imgs/hero-6b87cc279c810d8c9af92e0bfc3e4a4b21dd9bf0-844x474.svg is excluded by !**/*.svg
  • apps/site/public/datadx-name-for-prismas-philosophy/imgs/meta-20adaa4799629b59c11ad00ea86bdc7cfbbd0ed5-1266x711.png is excluded by !**/*.png
  • apps/site/public/datamodel-v11-lrzqy1f56c90/imgs/hero-99f1530d6ebe62110fd2839ba4f0185795ee5db4-1200x630.png is excluded by !**/*.png
  • apps/site/public/datamodel-v11-lrzqy1f56c90/imgs/wJCyxVy.png is excluded by !**/*.png
  • apps/site/public/documenting-apis-mjjpz7e7nkvp/imgs/115104730-06d2f780-9f63-11eb-9f82-f7bd75d58558.png is excluded by !**/*.png
  • apps/site/public/documenting-apis-mjjpz7e7nkvp/imgs/115109659-bfa72f80-9f7f-11eb-9fde-f995c6f51262.png is excluded by !**/*.png
  • apps/site/public/documenting-apis-mjjpz7e7nkvp/imgs/115110406-ef583680-9f83-11eb-9155-753600312788.png is excluded by !**/*.png
  • apps/site/public/documenting-apis-mjjpz7e7nkvp/imgs/1_btqXg9fLTExVjRDyrY1vsA.jpeg is excluded by !**/*.jpeg
  • apps/site/public/documenting-apis-mjjpz7e7nkvp/imgs/hero-2982f7850de70f0c52daa613dae904b463342823-1692x852.png is excluded by !**/*.png
  • apps/site/public/e2e-type-safety-graphql-react-1-i2gxifxksz/imgs/finished-ui.png is excluded by !**/*.png
  • apps/site/public/e2e-type-safety-graphql-react-1-i2gxifxksz/imgs/hero-2f58c7e9701e7f9a0250db211bdf5284da11d2d8-844x474.svg is excluded by !**/*.svg
  • apps/site/public/e2e-type-safety-graphql-react-1-i2gxifxksz/imgs/localhost.png is excluded by !**/*.png
  • apps/site/public/e2e-type-safety-graphql-react-1-i2gxifxksz/imgs/messages-displayed.png is excluded by !**/*.png
  • apps/site/public/e2e-type-safety-graphql-react-1-i2gxifxksz/imgs/meta-dc0f147b1428391e4b3d0374523d45639d1318a6-1269x715.png is excluded by !**/*.png
  • apps/site/public/e2e-type-safety-graphql-react-1-i2gxifxksz/imgs/tailwind-complete.png is excluded by !**/*.png
  • apps/site/public/e2e-type-safety-graphql-react-1-i2gxifxksz/imgs/user-displayed.png is excluded by !**/*.png
  • apps/site/public/e2e-type-safety-graphql-react-1-i2gxifxksz/imgs/vite-starter.png is excluded by !**/*.png
  • apps/site/public/e2e-type-safety-graphql-react-2-j9meyhy0ej/imgs/hero-838c88ca3817165045cc051d8845880e5a313baf-844x474.svg is excluded by !**/*.svg
  • apps/site/public/e2e-type-safety-graphql-react-2-j9meyhy0ej/imgs/meta-06962f83ac8be93c511d0ef6cbc29e2cff49e387-1269x715.png is excluded by !**/*.png
  • apps/site/public/e2e-type-safety-graphql-react-2-j9meyhy0ej/imgs/railway-connect.png is excluded by !**/*.png
  • apps/site/public/e2e-type-safety-graphql-react-2-j9meyhy0ej/imgs/railway-data.png is excluded by !**/*.png
📒 Files selected for processing (16)
  • apps/blog/README.md
  • apps/blog/package.json
  • apps/blog/src/lib/url.ts
  • apps/docs/README.md
  • apps/docs/package.json
  • apps/docs/playwright.config.ts
  • apps/docs/src/lib/urls.ts
  • apps/eclipse/README.md
  • apps/eclipse/package.json
  • apps/eclipse/playwright.config.ts
  • apps/eclipse/src/app/(design-system)/sitemap.ts
  • apps/site/README.md
  • apps/site/components.json
  • apps/site/next.config.mjs
  • apps/site/package.json
  • apps/site/postcss.config.mjs

@argos-ci
Copy link

argos-ci bot commented Mar 19, 2026

The latest updates on your projects. Learn more about Argos notifications ↗︎

Build Status Details Updated (UTC)
default (Inspect) 👍 Changes approved 1 changed Mar 19, 2026, 3:24 PM

Copy link
Contributor

@carlagn carlagn left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

🥳

@mhartington mhartington merged commit 6ce797f into main Mar 19, 2026
12 checks passed
@mhartington mhartington deleted the web-base branch March 19, 2026 15:50
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

2 participants