Vercel Edge Adapter
Qwik Router Vercel Edge adapter allows you to connect Qwik Router to Vercel Edge Functions.
Installation
To integrate the vercel-edge
adapter, use the add
command:
pnpm run qwik add vercel-edge
npm run qwik add vercel-edge
yarn run qwik add vercel-edge
bun run qwik add vercel-edge
It will automatically install the required dependencies, including the Vercel CLI.
The adapter will add a new vite.config.mts
within the adapters/
directory, and a new entry file will be created, such as:
โโโ adapters/
โโโ vercel-edge/
โโโ vite.config.mts
โโโ src/
โโโ entry.vercel-edge.tsx
Additionally, within the package.json
, the build.server
and deploy
scripts will be updated.
Production build
To build the application for production, use the build
command, this command will automatically run build.server
and build.client
:
pnpm run build
npm run build
yarn run build
bun run build
Dev deploy
To deploy the application for development:
pnpm run deploy
npm run deploy
yarn run deploy
bun run deploy
Notice that you might need a Vercel account in order to complete this step!
Production deploy
After installing the integration the project is ready to be deployed to Vercel. However, you will need to create a git repository and push the code to it.
Please refer to the Vercel docs for more information on how to deploy your site: Vercel docs
Environment variables
You can access environment variables from Vercel like this process.env['MY_ENV_VAR']
Advanced
Vercel Edge Entry Middleware
When the vercel-edge
adapter is added, a new entry file will be created at src/entry.vercel-edge.tsx
. Below is an example of using the built-in middleware within the entry file.
import { createQwikRouter } from '@qwik.dev/router/middleware/vercel-edge';
import qwikRouterConfig from '@qwik-router-config';
import render from './entry.ssr';
export default createQwikRouter({ render, qwikRouterConfig });
The compiled middleware will be built in the .vercel/output
directory.
Vercel Edge Functions
Vercel Edge Functions are deployed globally by default on Vercel's Edge Network and enable you to move server-side logic to the Edge, close to your visitor's origin.
Edge Functions use the Vercel Edge Runtime, which is built on the same high-performance V8 JavaScript and WebAssembly engine that is used by the Chrome browser. By taking advantage of this small runtime, Edge Functions can have faster cold boots and higher scalability than Serverless Functions.
Edge Functions run after the cache, and can both cache and return responses.
Drizzle with Vercel Edge Functions
Running Postgres on edge requires edge-compatible drivers since Postgres relies on Node.js APIs. When no adapter is used, the below errors might appear during the deployment process:
โโโ The Edge Function "_qwik-router" is referencing unsupported modules
โโโ Cannot bundle Node.js built-in "node:events" imported from "node_modules\postgres\cf\polyfills.js"
Luckily, drizzle has a section that can be followed to implement the right adapter of choice.