1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34# Performance Benchmarks
A dashboard for viewing vinext performance benchmarks, built with the App Router on Cloudflare Workers.
Compares build times and metrics across Next.js 16 (Turbopack), vinext (Rollup), and vinext (Rolldown) on every merge to main.
Uses a D1 database for benchmark storage and Tailwind CSS for styling.
## Running Locally
1. Install dependencies:
```sh
pnpm install
```
2. Start the dev server:
```sh
pnpm dev
```
3. Build for production:
```sh
pnpm build
```
4. Preview the production build:
```sh
pnpm preview
```