| name | Geolocation in Edge functions | ||
|---|---|---|---|
| slug | edge-functions-geolocation | ||
| description | Learn how to use visitor's location in edge functions. | ||
| framework | Next.js | ||
| useCase |
|
||
| css | Tailwind | ||
| deployUrl | https://vercel.com/new/clone?repository-url=https://github.com/vercel/examples/tree/main/edge-functions/geolocation&project-name=geolocation&repository-name=geolocation | ||
| demoUrl | https://edge-functions-geolocation.vercel.sh |
This example shows how to use the event.request.geo object to determine a user's location.
geo: {
city?: string
country?: string
region?: string
}https://edge-functions-geolocation.vercel.sh
You can choose from one of the following two methods to use this repository:
Deploy the example using Vercel:
Execute create-next-app with npm or Yarn to bootstrap the example:
npx create-next-app --example https://github.com/vercel/examples/tree/main/edge-functions/geolocation geolocation
# or
yarn create next-app --example https://github.com/vercel/examples/tree/main/edge-functions/geolocation geolocationNext, run Next.js in development mode:
npm install
npm run dev
# or
yarn
yarn devDeploy it to the cloud with Vercel (Documentation).