diff --git a/content/docs/guides/neon-private-networking.md b/content/docs/guides/neon-private-networking.md
index d44349bf0c..694195f60b 100644
--- a/content/docs/guides/neon-private-networking.md
+++ b/content/docs/guides/neon-private-networking.md
@@ -266,6 +266,34 @@ The Neon API provides endpoints for managing VPC endpoints and project-level VPC
- [Assign or update a VPC endpoint restriction](https://api-docs.neon.tech/reference/assignprojectvpcendpoint)
- [Delete a VPC endpoint restriction](https://api-docs.neon.tech/reference/deleteprojectvpcendpoint)
+## Using Private Networking with Vercel Enterprise
+
+If you're a Vercel Enterprise customer using Secure Compute, you can configure private network connectivity between your Vercel project and your Neon database using AWS PrivateLink. This allows your application to connect to Neon without exposing the database to the public internet.
+
+
+This managed feature is only available to Vercel Enterprise customers using [Secure Compute](https://vercel.com/docs/security/secure-compute). Please contact your Vercel account representative to enable this feature.
+
+
+### Requirements
+
+- A Vercel Enterprise account with Secure Compute enabled
+- A Neon account on the [Business or Enterprise plan](/docs/introduction/plans)
+- Your Vercel project and Neon database must be in the same AWS region
+- The Neon Postgres Previews Integration cannot be installed on the same Vercel Project
+
+### Setup process
+
+1. Contact your Vercel account representative to initiate the setup
+2. Vercel will create a VPC endpoint in your Secure Compute VPC and provide you with the VPC endpoint ID
+3. Follow steps 2-4 in the [Configuration steps](#configuration-steps) section above to:
+ - Add the VPC Endpoint ID to your Neon organization
+ - Check your database connection string
+ - Optionally restrict public internet access
+
+
+Your database connection string remains the same. The private connection is handled automatically when accessing your database from within your Secure Compute environment.
+
+
## Limits
The Private Networking feature supports a maximum of **10 private networking configurations per AWS region**. Supported AWS regions are listed [above](#create-an-aws-vpc-endpoint).
diff --git a/package-lock.json b/package-lock.json
index b0567775f7..8ba714ae0c 100644
--- a/package-lock.json
+++ b/package-lock.json
@@ -100,7 +100,7 @@
"lint-staged": "^15.2.2",
"postcss": "^8.4.38",
"postcss-import": "^16.1.0",
- "prettier": "^3.5.2",
+ "prettier": "^3.5.3",
"prettier-plugin-tailwindcss": "^0.5.14",
"prisma": "^5.19.1",
"shiki": "^1.1.1",
@@ -21564,9 +21564,9 @@
}
},
"node_modules/prettier": {
- "version": "3.5.2",
- "resolved": "https://registry.npmjs.org/prettier/-/prettier-3.5.2.tgz",
- "integrity": "sha512-lc6npv5PH7hVqozBR7lkBNOGXV9vMwROAPlumdBkX0wTbbzPu/U1hk5yL8p2pt4Xoc+2mkT8t/sow2YrV/M5qg==",
+ "version": "3.5.3",
+ "resolved": "https://registry.npmjs.org/prettier/-/prettier-3.5.3.tgz",
+ "integrity": "sha512-QQtaxnoDJeAkDvDKWCLiwIXkTgRhwYDEQCghU9Z6q03iyek/rxRh/2lC3HB7P8sWT2xC/y5JDctPLBIGzHKbhw==",
"dev": true,
"license": "MIT",
"bin": {
diff --git a/package.json b/package.json
index 5ed1a1bcef..a99a2b7641 100644
--- a/package.json
+++ b/package.json
@@ -118,7 +118,7 @@
"lint-staged": "^15.2.2",
"postcss": "^8.4.38",
"postcss-import": "^16.1.0",
- "prettier": "^3.5.2",
+ "prettier": "^3.5.3",
"prettier-plugin-tailwindcss": "^0.5.14",
"prisma": "^5.19.1",
"shiki": "^1.1.1",