mirror of
https://github.com/cloudflare/vinext.git
synced 2026-09-14 19:04:59 +08:00
a62e5c4901
* chore(benchmarks): remove Vite 7 runner, update Next.js to 16.2.1 The vinext-rolldown benchmark runner was identical to the vinext runner (both resolved to the same Vite version via catalog), producing duplicate results on the dashboard. Remove it entirely and simplify to a two-runner comparison: Next.js (Turbopack) vs vinext (Vite 8). Also bump the Next.js benchmark dependency from 16.1.7 to 16.2.1 to pick up recent performance improvements. * fix: remove vinext-rolldown from pnpm-workspace.yaml, fix migration comment
21 lines
480 B
CSS
21 lines
480 B
CSS
@source "../node_modules/@cloudflare/kumo/dist/**/*.{js,jsx,ts,tsx}";
|
|
@import "@cloudflare/kumo/styles/tailwind";
|
|
@import "tailwindcss";
|
|
|
|
@theme {
|
|
--color-chart-nextjs: #f97316;
|
|
--color-chart-vinext: #3b82f6;
|
|
|
|
--color-faster: #22c55e;
|
|
--color-slower: #ef4444;
|
|
--color-neutral-metric: #6b7280;
|
|
}
|
|
|
|
@layer base {
|
|
body {
|
|
font-family: system-ui, -apple-system, sans-serif;
|
|
background: var(--color-gray-50, #f9fafb);
|
|
color: var(--color-gray-900, #111827);
|
|
}
|
|
}
|