2 of 6 standards met
Repository: vercel/analytics. Description: Privacy-friendly, real-time traffic insights Stars: 498, Forks: 45. Primary language: TypeScript. Languages: TypeScript (73.9%), Vue (9.6%), CSS (8.9%), Astro (3.2%), JavaScript (3.2%). License: MPL-2.0. Homepage: https://vercel.com/analytics Latest release: 1.6.1 (2mo ago). Open PRs: 2, open issues: 23. Last activity: 4d ago. Community health: 50%. Top contributors: tobiaslins, feugy, timolins, dglsparsons, chriswdmr, AndyBitz, atinux, emspishak, Ethan-Arrowood, MacielG1 and others.
TypeScript
Last 12 weeks · 1 commit
Description Currently, (v1.6.1) specifies as an optional peer dependency. With the release of , projects using the latest version of Vue encounter errors during installation because of this version mismatch. Console output Changes This PR updates the package and peerDependencies to support vue-router v5.
I'm running into an issue with CORS when using Vercel Speed Insights and Analytics in a NextJS app: The requests seem to work fine, it's only the request that failing. I've tried enabling CORS in a NextJS app as described here: https://vercel.com/guides/how-to-enable-cors#enabling-cors-using-vercel.json But it doesn't seem to affect the endpoint. Do the endpoints block CORS?
🖖 What's in there? This PR includes Nextjs parallel routes besteffort support. 🤺 How to test? There are two new routes in the nextjs-15 demo app: /parallel-routes/dashboard and parallel-routes/settings. Open the dev tools and check in console for the detected route and actual path. 🔬Notes to reviewers In Next.js App Router, merges params from all active route segments, including parallel route slots ( convention). When a layout has a slot with a catch-all segment (e.g., ), that slot's params appear in even though they don't correspond to the URL structure. The bug: on a static route like , returns (from the sidebar slot). then produces instead of the correct static path. The reproduction is already built at apps/nextjs-15/src/app/parallel-routes/. How It Handles Each Scenario