-
Notifications
You must be signed in to change notification settings - Fork 1.1k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
6 changed files
with
547 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,34 @@ | ||
# See https://help.github.com/articles/ignoring-files/ for more about ignoring files. | ||
|
||
# Dependencies | ||
/node_modules | ||
/.pnp | ||
.pnp.js | ||
|
||
# Testing | ||
/coverage | ||
|
||
# Production | ||
build | ||
dist | ||
|
||
# Misc | ||
.DS_Store | ||
*.pem | ||
|
||
# Debug | ||
npm-debug.log* | ||
yarn-debug.log* | ||
yarn-error.log* | ||
|
||
# Local ENV files | ||
.env.local | ||
.env.development.local | ||
.env.test.local | ||
.env.production.local | ||
|
||
# Vercel | ||
.vercel | ||
|
||
# Turborepo | ||
.turbo |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
# Fastify + Vercel | ||
|
||
This example shows how to use Fastify with Vercel Functions. | ||
|
||
## Demo | ||
|
||
https://fastify-example.vercel.app/ | ||
|
||
## Running Locallly | ||
|
||
```bash | ||
npm i | ||
npm i -g vercel@latest | ||
vercel dev | ||
``` | ||
|
||
## One-Click Deploy | ||
|
||
Deploy the example using [Vercel](https://vercel.com?utm_source=github&utm_medium=readme&utm_campaign=vercel-examples): | ||
|
||
[![Deploy with Vercel](https://vercel.com/button)](https://vercel.com/new/clone?repository-url=https://github.com/vercel/examples/tree/main/starter/fastify&project-name=fastify&repository-name=fastify) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,66 @@ | ||
import Fastify from 'fastify' | ||
|
||
const app = Fastify({ | ||
logger: true, | ||
}) | ||
|
||
app.get('/', async (req, reply) => { | ||
return reply.status(200).type('text/html').send(html) | ||
}) | ||
|
||
export default async function handler(req, reply) { | ||
await app.ready() | ||
app.server.emit('request', req, reply) | ||
} | ||
|
||
const html = ` | ||
<!DOCTYPE html> | ||
<html lang="en"> | ||
<head> | ||
<meta charset="UTF-8" /> | ||
<meta name="viewport" content="width=device-width, initial-scale=1.0" /> | ||
<link | ||
rel="stylesheet" | ||
href="https://cdn.jsdelivr.net/npm/@exampledev/[email protected]/new.min.css" | ||
/> | ||
<title>Vercel + Fastify Hello World</title> | ||
<meta | ||
name="description" | ||
content="This is a starter template for Vercel + Fastify." | ||
/> | ||
</head> | ||
<body> | ||
<h1>Vercel + Fastify Hello World</h1> | ||
<p> | ||
This is a starter template for Vercel + Fastify. Requests are | ||
rewritten from <code>/*</code> to <code>/api/*</code>, which runs | ||
as a Vercel Function. | ||
</p> | ||
<p> | ||
For example, here is the boilerplate code for this route: | ||
</p> | ||
<pre> | ||
<code>import Fastify from 'fastify' | ||
const app = Fastify({ | ||
logger: true, | ||
}) | ||
app.get('/', async (req, res) => { | ||
return res.status(200).type('text/html').send(html) | ||
}) | ||
export default async function handler(req: any, res: any) { | ||
await app.ready() | ||
app.server.emit('request', req, res) | ||
}</code> | ||
</pre> | ||
<p> | ||
<p> | ||
<a href="https://vercel.com/templates/other/fastify-serverless-function"> | ||
Deploy your own | ||
</a> | ||
to get started. | ||
</body> | ||
</html> | ||
` |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
{ | ||
"name": "fastify", | ||
"repository": "https://github.com/vercel/examples.git", | ||
"license": "MIT", | ||
"private": true, | ||
"dependencies": { | ||
"fastify": "^4.25.2" | ||
} | ||
} |
Oops, something went wrong.
82d732d
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Successfully deployed to the following URLs:
mint-nft – ./solutions/mint-nft
solutions-mint-nft.vercel.app
mint-nft-vercel-solutions-vtest314.vercel.app
mint-nft-kappa.vercel.app
mint-nft-git-main-vercel-solutions-vtest314.vercel.app
82d732d
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Successfully deployed to the following URLs:
kv-redis-starter – ./storage/kv-redis-starter
nextjs-kv-starter.vercel.app
kv-starter.vercel.app
kv-redis-starter-git-main.vercel.rocks
kv-redis-starter.vercel.rocks
kv-redis-starter.vercel.app
82d732d
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Successfully deployed to the following URLs:
examples – ./storage/postgres-starter
examples-bice.vercel.app
examples.vercel.rocks
examples-git-main.vercel.rocks
82d732d
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Successfully deployed to the following URLs:
postgres-drizzle – ./storage/postgres-drizzle
postgres-drizzle.vercel.app
postgres-drizzle.vercel.rocks
postgres-drizzle-git-main.vercel.rocks
82d732d
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Successfully deployed to the following URLs:
blob-starter – ./storage/blob-starter
blob-starter.vercel.app
blob-starter-git-main.vercel.rocks
blob-starter.vercel.rocks
82d732d
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Successfully deployed to the following URLs:
next-flask – ./python/nextjs-flask
nextjs-python.vercel.app
next-flask.vercel.rocks
next-flask-git-main.vercel.rocks
nextjs-flask-starter.vercel.app
82d732d
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Successfully deployed to the following URLs:
edge-functions-ab-testing-simple – ./edge-middleware/ab-testing-simple
edge-functions-ab-testing-simple-now-examples.vercel.app
edge-functions-ab-testing-simple-git-main-now-examples.vercel.app
edge-functions-ab-testing-simple.vercel.app
edge-functions-ab-testing-simple.vercel.sh
82d732d
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Successfully deployed to the following URLs:
edge-functions-add-header – ./edge-middleware/add-header
edge-functions-add-header-git-main-now-examples.vercel.app
edge-functions-add-header.vercel.app
edge-functions-add-header-now-examples.vercel.app
edge-functions-add-header.vercel.sh
82d732d
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Successfully deployed to the following URLs:
edge-ab-testing-google-optimize – ./edge-middleware/ab-testing-google-optimize
edge-ab-testing-google-optimize-git-main-now-examples.vercel.app
edge-functions-ab-testing-google-optimize.vercel.app
ab-testing-google-optimize.vercel.app
edge-functions-ab-testing-google-optimize.vercel.sh
edge-ab-testing-google-optimize-now-examples.vercel.app
82d732d
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Successfully deployed to the following URLs:
edge-functions-api-rate-limit-and-tokens – ./edge-functions/api-rate-limit-and-tokens
edge-functions-api-rate-limit-and-tokens-now-examples.vercel.app
edge-rate-limit.vercel.app
edge-functions-api-rate-limit-and-tokens.vercel.app
edge-functions-api-rate-limit-and-tokens-git-main-now-examples.vercel.app
edge-functions-api-rate-limit-and-tokens.vercel.sh
82d732d
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Successfully deployed to the following URLs:
edge-functions-cors – ./edge-functions/cors
edge-functions-cors-now-examples.vercel.app
edge-functions-cors.vercel.app
edge-functions-cors-git-main-now-examples.vercel.app
edge-functions-cors.vercel.sh
82d732d
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Successfully deployed to the following URLs:
edge-functions-api-rate-limit – ./edge-functions/api-rate-limit
edge-functions-api-rate-limit.vercel.app
edge-functions-api-rate-limit.vercel.sh
edge-functions-api-rate-limit-now-examples.vercel.app
edge-functions-api-rate-limit-git-main-now-examples.vercel.app
82d732d
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Successfully deployed to the following URLs:
edge-functions-bot-protection-botd – ./edge-middleware/bot-protection-botd
edge-functions-bot-protection-botd.vercel.app
edge-functions-bot-protection-botd-git-main-now-examples.vercel.app
edge-functions-bot-protection-botd-now-examples.vercel.app
botd.vercel.sh
edge-functions-bot-protection-botd.vercel.sh
82d732d
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Successfully deployed to the following URLs:
edge-functions-bot-protection-datadome – ./edge-middleware/bot-protection-datadome
edge-functions-bot-protection-datadome-now-examples.vercel.app
edge-functions-bot-protection-datadome.vercel.app
edge-functions-bot-protection-datadome-git-main-now-examples.vercel.app
edge-functions-datadome.vercel.sh
edge-functions-bot-protection-datadome.vercel.sh
82d732d
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Successfully deployed to the following URLs:
edge-functions-basic-auth-password – ./edge-middleware/basic-auth-password
edge-password.vercel.app
edge-functions-basic-auth-password-now-examples.vercel.app
edge-functions-basic-auth-password.vercel.app
password-protection.vercel.app
edge-functions-password-protection.vercel.sh
edge-functions-basic-auth-password.vercel.sh
edge-functions-basic-auth-password-git-main-now-examples.vercel.app
82d732d
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Successfully deployed to the following URLs:
edge-functions-crypto – ./edge-middleware/crypto
edge-functions-crypto-now-examples.vercel.app
edge-functions-crypto.vercel.sh
crypto.vercel.sh
edge-functions-crypto-git-main-now-examples.vercel.app
edge-functions-crypto.vercel.app
82d732d
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Successfully deployed to the following URLs:
example-feature-flag-apple-store – ./edge-middleware/feature-flag-apple-store
example-feature-flag-apple-store-now-examples.vercel.app
edge-functions-feature-flag-apple-store.vercel.app
example-feature-flag-apple-store-git-main-now-examples.vercel.app
edge-functions-feature-flag-apple-store.vercel.sh
apple-store.vercel.sh
82d732d
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Successfully deployed to the following URLs:
edge-functions-feature-flag-configcat – ./edge-middleware/feature-flag-configcat
ab-testing-configcat.vercel.app
edge-functions-feature-flag-configcat-now-examples.vercel.app
edge-functions-feature-flag-configcat.vercel.app
edge-functions-feature-flag-configcat-git-main-now-examples.vercel.app
edge-functions-feature-flag-configcat.vercel.sh
82d732d
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Successfully deployed to the following URLs:
edge-functions-hostname-rewrites – ./edge-middleware/hostname-rewrites
subdomain-3.vercel.sh
edge-functions-hostname-rewrites-now-examples.vercel.app
subdomain-1.vercel.sh
subdomain-2.vercel.sh
www.custom-domain-1.com
edge-functions-hostname-rewrites.vercel.sh
edge-functions-hostname-rewrites-git-main-now-examples.vercel.app
custom-domain-1.com
82d732d
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Successfully deployed to the following URLs:
edge-functions-feature-flag-split – ./edge-middleware/feature-flag-split
edge-functions-feature-flag-split-git-main-now-examples.vercel.app
edge-functions-feature-flag-split-now-examples.vercel.app
feature-flags-split.vercel.app
ab-testing-split.vercel.app
edge-functions-feature-flag-split.vercel.sh
edge-functions-feature-flag-split.vercel.app
82d732d
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Successfully deployed to the following URLs:
edge-functions-json-response – ./edge-middleware/json-response
edge-functions-json-response.vercel.app
edge-functions-json-response-now-examples.vercel.app
edge-functions-json-response.vercel.sh
edge-functions-json-response-git-main-now-examples.vercel.app
82d732d
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Successfully deployed to the following URLs:
edge-functions-ip-blocking-datadome – ./edge-middleware/ip-blocking-datadome
edge-functions-ip-blocking-datadome.vercel.app
edge-datadome.vercel.app
ip-blocking-datadome.vercel.app
edge-functions-ip-blocking-datadome-git-main-now-examples.vercel.app
edge-functions-ip-blocking-datadome.vercel.sh
edge-functions-ip-blocking-datadome-now-examples.vercel.app
82d732d
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Successfully deployed to the following URLs:
edge-functions-geolocation – ./edge-middleware/geolocation
edge-functions-geolocation-git-main-now-examples.vercel.app
edge-functions-geolocation-now-examples.vercel.app
geo-headers.vercel.app
edge-functions-geolocation.vercel.sh
82d732d
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Successfully deployed to the following URLs:
edge-functions-power-parity-pricing – ./edge-middleware/power-parity-pricing
edge-functions-power-parity-pricing-git-main-now-examples.vercel.app
edge-functions-power-parity-pricing-now-examples.vercel.app
edge-functions-power-parity-pricing.vercel.app
edge-ppp.vercel.app
edge-functions-ppp.vercel.sh
edge-functions-power-parity-pricing.vercel.sh
82d732d
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Successfully deployed to the following URLs:
edge-functions-image-response – ./edge-middleware/image-response
edge-functions-image-response-git-main-now-examples.vercel.app
edge-functions-image-response.vercel.sh
edge-functions-image-response-now-examples.vercel.app
edge-functions-image-response.vercel.app
82d732d
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Successfully deployed to the following URLs:
edge-functions-jwt-authentication – ./edge-middleware/jwt-authentication
edge-functions-jwt-authentication-git-main-now-examples.vercel.app
edge-jwt.vercel.app
edge-jwt.vercel.sh
edge-functions-jwt-authentication.vercel.app
edge-functions-jwt-authentication-now-examples.vercel.app
edge-functions-jwt-authentication.vercel.sh
82d732d
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Successfully deployed to the following URLs:
example-reduce-image-bandwidth-usage – ./solutions/reduce-image-bandwidth-usage
example-reduce-image-bandwidth-usage-now-examples.vercel.app
example-reduce-image-bandwidth-usage-git-main-now-examples.vercel.app
solutions-reduce-image-bandwidth-usage.vercel.sh
example-reduce-image-bandwidth-usage.vercel.app
82d732d
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Successfully deployed to the following URLs:
edge-functions-power-parity-pricing-strategies – ./edge-middleware/power-parity-pricing-strategies
edge-functions-power-parity-pricing-strategies.vercel.app
edge-functions-power-parity-pricing-strategies.vercel.sh
edge-functions-power-parity-pricing-str-git-cabbcc-now-examples.vercel.app
edge-mug.vercel.app
edge-ppp-strategies.vercel.sh
edge-ppp-strategies.vercel.app
edge-functions-power-parity-pricing-strategies-now-examples.vercel.app
82d732d
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Successfully deployed to the following URLs:
edge-functions-query-params-filter – ./edge-middleware/query-params-filter
edge-functions-query-params-filter-now-examples.vercel.app
edge-functions-query-params-filter-git-main-now-examples.vercel.app
edge-functions-query-params-filter.vercel.app
edge-functions-query-params-filter.vercel.sh
82d732d
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Successfully deployed to the following URLs:
edge-functions-news – ./starter/next-news
edge-functions-news-git-main-now-examples.vercel.app
edge-functions-news-now-examples.vercel.app
edge-functions-next-news.vercel.sh
82d732d
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Successfully deployed to the following URLs:
solutions-image-offset – ./solutions/image-offset
solutions-image-offset-git-main-now-examples.vercel.app
solutions-image-offset.vercel.app
solutions-image-offset-now-examples.vercel.app
82d732d
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Successfully deployed to the following URLs:
edge-functions-feature-flag-posthog – ./edge-middleware/feature-flag-posthog
edge-functions-feature-flag-posthog-git-main-now-examples.vercel.app
edge-functions-feature-flag-posthog.vercel.app
edge-functions-feature-flag-posthog-now-examples.vercel.app
edge-functions-feature-flag-posthog.vercel.sh
82d732d
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Successfully deployed to the following URLs:
solutions-script-component-strategies – ./solutions/script-component-strategies
solutions-script-component-strategies-now-examples.vercel.app
solutions-script-component-strategies-git-main-now-examples.vercel.app
solutions-script-component-strategies.vercel.sh
solutions-script-component-strategies.vercel.app
82d732d
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Successfully deployed to the following URLs:
solutions-combining-data-fetching-strategies – ./solutions/combining-data-fetching-strategies
solutions-combining-data-fetching-strategies-now-examples.vercel.app
solutions-combining-data-fetching-strategies.vercel.app
solutions-combining-data-fetching-strategies.vercel.sh
solutions-combining-data-fetching-strat-git-21a392-now-examples.vercel.app
82d732d
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Successfully deployed to the following URLs:
edge-functions-cookies – ./edge-middleware/cookies
edge-functions-cookies-git-main-now-examples.vercel.app
edge-functions-cookies.vercel.app
edge-functions-cookies.vercel.sh
edge-functions-cookies-now-examples.vercel.app
82d732d
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Successfully deployed to the following URLs:
edge-functions-redirects-upstash – ./edge-middleware/redirects-upstash
edge-functions-redirects-upstash.vercel.app
edge-functions-redirects-upstash-git-main-now-examples.vercel.app
edge-functions-redirects-upstash-now-examples.vercel.app
edge-functions-redirects-upstash.vercel.sh
82d732d
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Successfully deployed to the following URLs:
solutions-reuse-responses – ./solutions/reuse-responses
solutions-reuse-responses-git-main-now-examples.vercel.app
solutions-reuse-responses.vercel.app
solutions-reuse-responses-now-examples.vercel.app
solutions-reuse-responses.vercel.sh
82d732d
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Successfully deployed to the following URLs:
edge-rewrites-upstash – ./edge-middleware/rewrites-upstash
edge-rewrites-upstash-now-examples.vercel.app
edge-rewrites-upstash-git-main-now-examples.vercel.app
edge-rewrites-upstash.vercel.app
edge-rewrites-upstash.vercel.sh
82d732d
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Successfully deployed to the following URLs:
solutions-on-demand-isr – ./solutions/on-demand-isr
solutions-on-demand-isr.vercel.app
solutions-on-demand-isr-now-examples.vercel.app
solutions-on-demand-isr-git-main-now-examples.vercel.app
82d732d
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Successfully deployed to the following URLs:
solutions-pagination-with-ssg – ./solutions/pagination-with-ssg
solutions-pagination-with-ssg-now-examples.vercel.app
solutions-pagination-with-ssg-git-main-now-examples.vercel.app
solutions-pagination-with-ssg.vercel.app
pagination-with-ssg.vercel.app
solutions-pagination-with-ssg.vercel.sh
solutions-pagination-with-ssg-kohl.vercel.sh
82d732d
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Successfully deployed to the following URLs:
solutions-image-fallback – ./solutions/image-fallback
solutions-image-fallback.vercel.app
solutions-image-fallback-git-main-now-examples.vercel.app
solutions-image-fallback.vercel.sh
solutions-image-fallback-now-examples.vercel.app
82d732d
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Successfully deployed to the following URLs:
edge-user-agent-based-rendering – ./edge-middleware/user-agent-based-rendering
edge-user-agent-based-rendering-now-examples.vercel.app
edge-user-agent-based-rendering.vercel.app
edge-user-agent-based-rendering-git-main-now-examples.vercel.app
82d732d
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Successfully deployed to the following URLs:
solutions-loading-web-fonts – ./solutions/loading-web-fonts
solutions-loading-web-fonts-now-examples.vercel.app
solutions-loading-web-fonts.vercel.app
solutions-loading-web-fonts-git-main-now-examples.vercel.app
82d732d
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Successfully deployed to the following URLs:
solutions-subdomains-auth – ./solutions/subdomain-auth
solutions-subdomains-auth-git-main-now-examples.vercel.app
solutions-subdomain-auth.vercel.app
solutions-subdomains-auth-now-examples.vercel.app
subdomain.solutions-subdomain-auth.vercel.sh
solutions-subdomain-auth.vercel.sh
82d732d
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Successfully deployed to the following URLs:
feature-flag-optimizely – ./edge-middleware/feature-flag-optimizely
feature-flag-optimizely.vercel.app
feature-flag-optimizely-git-main-now-examples.vercel.app
feature-flag-optimizely-now-examples.vercel.app
82d732d
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Successfully deployed to the following URLs:
edge-maintenance-page – ./edge-middleware/maintenance-page
edge-maintenance-page.vercel.app
edge-maintenance-page-now-examples.vercel.app
edge-maintenance-page-git-main-now-examples.vercel.app
edge-maintenance-page.vercel.sh
82d732d
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Successfully deployed to the following URLs:
solutions-script-component-ad – ./solutions/script-component-ad
solutions-script-component-ad-git-main-now-examples.vercel.app
solutions-script-component-ad-now-examples.vercel.app
solutions-script-component-ad.vercel.app
82d732d
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Successfully deployed to the following URLs:
edge-ab-testing-statsig – ./edge-middleware/ab-testing-statsig
edge-ab-testing-statsig-now-examples.vercel.app
edge-ab-testing-statsig.vercel.app
edge-ab-testing-statsig-git-main-now-examples.vercel.app
edge-ab-testing-statsig.vercel.sh
82d732d
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Successfully deployed to the following URLs:
i18n – ./edge-middleware/i18n
i18n-git-main-now-examples.vercel.app
i18n-now-examples.vercel.app
i18n.vercel.sh
middleware-i18n.vercel.app
82d732d
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Successfully deployed to the following URLs:
edge-functions-ip-blocking – ./edge-middleware/ip-blocking
edge-functions-ip-blocking-now-examples.vercel.app
edge-functions-ip-blocking-git-main-now-examples.vercel.app
edge-functions-ip-blocking.vercel.sh
edge-functions-ip-blocking.vercel.app
82d732d
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Successfully deployed to the following URLs:
app-dir-i18n – ./app-directory/i18n
app-dir-i18n-now-examples.vercel.app
app-dir-i18n.vercel.app
app-dir-i18n-git-main-now-examples.vercel.app
82d732d
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Successfully deployed to the following URLs:
edge-functions-streams – ./edge-functions/streams
edge-functions-streams-git-main-now-examples.vercel.app
edge-streams.vercel.app
edge-functions-streams-now-examples.vercel.app
example-streaming.vercel.app
edge-streaming.vercel.app
82d732d
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Successfully deployed to the following URLs:
app-dir-css-in-js – ./app-directory/css-in-js
app-dir-css-in-js-now-examples.vercel.app
app-dir-css-in-js.vercel.app
app-dir-css-in-js-git-main-now-examples.vercel.app
82d732d
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Successfully deployed to the following URLs:
app-dir-share-state – ./app-directory/share-state
app-dir-share-state-now-examples.vercel.app
app-dir-share-state.vercel.app
app-dir-share-state-git-main-now-examples.vercel.app
82d732d
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Successfully deployed to the following URLs:
edge-middleware-modify-request-header – ./edge-middleware/modify-request-header
edge-middleware-modify-request-header-now-examples.vercel.app
edge-middleware-modify-request-header.vercel.app
edge-middleware-modify-request-header-git-main-now-examples.vercel.app
82d732d
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Successfully deployed to the following URLs:
next-edge-api-route-hello-world – ./edge-functions/hello-world-next
next-edge-api-route-hello-world-now-examples.vercel.app
next-edge-api-route-hello-world-git-main-now-examples.vercel.app
next-edge-api-route.vercel.app
next-edge-api-route-hello-world.vercel.app
82d732d
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Successfully deployed to the following URLs:
edge-geolocation-country-block – ./edge-middleware/geolocation-country-block
edge-geolocation-country-block.vercel.app
edge-geolocation-country-block-now-examples.vercel.app
edge-geolocation-country-block-git-main-now-examples.vercel.app
82d732d
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Successfully deployed to the following URLs:
feature-flag-launchdarkly – ./edge-middleware/feature-flag-launchdarkly
feature-flag-launchdarkly-git-main-now-examples.vercel.app
feature-flag-launchdarkly-now-examples.vercel.app
feature-flag-launchdarkly.vercel.app
82d732d
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Successfully deployed to the following URLs:
nodejs-api – ./solutions/node-hello-world
nodejs-api-now-examples.vercel.app
nodejs-api-example.vercel.app
nodejs-api-murex.vercel.app
nodejs-api-git-main-now-examples.vercel.app
82d732d
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Successfully deployed to the following URLs:
feature-flag-hypertune – ./edge-middleware/feature-flag-hypertune
feature-flag-hypertune.vercel.app
feature-flag-hypertune-git-main-now-examples.vercel.app
feature-flag-hypertune-now-examples.vercel.app