├── .eslintrc.cjs ├── .gitattributes ├── .github ├── banner.png ├── composite-actions │ └── install │ │ └── action.yml ├── pull_request_template.md └── workflows │ ├── quality.yml │ └── release.yml ├── .gitignore ├── .husky └── pre-commit ├── .nvmrc ├── .prettierignore ├── LICENSE ├── README.md ├── apps ├── astro │ ├── .gitignore │ ├── README.md │ ├── astro.config.mjs │ ├── package.json │ ├── public │ │ ├── favicon.svg │ │ └── fonts │ │ │ ├── atkinson-bold.woff │ │ │ └── atkinson-regular.woff │ ├── src │ │ ├── components │ │ │ ├── BaseHead.astro │ │ │ ├── FormattedDate.astro │ │ │ ├── Header.astro │ │ │ └── HeaderLink.astro │ │ ├── consts.ts │ │ ├── content │ │ │ ├── blog │ │ │ │ ├── first-post.md │ │ │ │ └── second-post.md │ │ │ └── config.ts │ │ ├── env.d.ts │ │ ├── layouts │ │ │ └── BlogPost.astro │ │ ├── pages │ │ │ ├── about.astro │ │ │ ├── blog │ │ │ │ ├── [...slug].astro │ │ │ │ └── index.astro │ │ │ ├── index.astro │ │ │ └── rss.xml.js │ │ └── styles │ │ │ └── global.css │ └── tsconfig.json ├── nextjs │ ├── .eslintrc.json │ ├── .gitignore │ ├── app │ │ ├── blog │ │ │ ├── [slug] │ │ │ │ ├── layout.tsx │ │ │ │ └── page.tsx │ │ │ └── page.tsx │ │ └── layout.tsx │ ├── next.config.js │ ├── package.json │ ├── pages │ │ ├── _app.tsx │ │ ├── blog-pages │ │ │ └── [slug].tsx │ │ └── index.tsx │ └── tsconfig.json ├── nuxt │ ├── .gitignore │ ├── README.md │ ├── assets │ │ ├── base.css │ │ ├── logo.svg │ │ └── main.css │ ├── components │ │ └── HelloWorld.vue │ ├── layouts │ │ └── default.vue │ ├── nuxt.config.ts │ ├── package.json │ ├── pages │ │ ├── blog │ │ │ └── [category] │ │ │ │ └── [slug].vue │ │ └── index.vue │ ├── public │ │ └── favicon.ico │ ├── server │ │ └── tsconfig.json │ └── tsconfig.json ├── remix │ ├── .gitignore │ ├── README.md │ ├── app │ │ ├── root.tsx │ │ └── routes │ │ │ ├── _index.tsx │ │ │ └── blog.$slug.tsx │ ├── package.json │ ├── public │ │ └── favicon.ico │ ├── tsconfig.json │ └── vite.config.ts ├── sveltekit │ ├── .gitignore │ ├── .npmrc │ ├── README.md │ ├── jsconfig.json │ ├── package.json │ ├── src │ │ ├── app.d.ts │ │ ├── app.html │ │ └── routes │ │ │ ├── +layout.js │ │ │ ├── +page.svelte │ │ │ └── [slug] │ │ │ └── +page.svelte │ ├── static │ │ └── favicon.png │ ├── svelte.config.js │ └── vite.config.js └── vue │ ├── .gitignore │ ├── README.md │ ├── index.html │ ├── package.json │ ├── public │ └── favicon.ico │ ├── src │ ├── App.vue │ ├── assets │ │ ├── base.css │ │ ├── logo.svg │ │ └── main.css │ ├── components │ │ └── HelloWorld.vue │ └── main.js │ └── vite.config.js ├── lint-staged.config.js ├── package.json ├── packages └── web │ ├── .eslintrc.cjs │ ├── .npmignore │ ├── LICENSE │ ├── README.md │ ├── package.json │ ├── src │ ├── astro │ │ ├── component.ts │ │ └── index.astro │ ├── generic.server.test.ts │ ├── generic.test.ts │ ├── generic.ts │ ├── nextjs │ │ ├── index.tsx │ │ ├── utils.test.ts │ │ └── utils.ts │ ├── nuxt │ │ └── index.ts │ ├── queue.ts │ ├── react │ │ ├── index.test.tsx │ │ ├── index.tsx │ │ ├── utils.test.ts │ │ └── utils.ts │ ├── remix │ │ ├── index.tsx │ │ ├── utils.test.ts │ │ └── utils.ts │ ├── sveltekit │ │ ├── index.ts │ │ ├── utils.test.ts │ │ └── utils.ts │ ├── types.ts │ ├── utils.test.ts │ ├── utils.ts │ └── vue │ │ ├── create-component.ts │ │ ├── index.ts │ │ ├── utils.test.ts │ │ └── utils.ts │ ├── test.setup.ts │ ├── tsconfig.json │ ├── tsup.config.js │ └── vitest.config.mts ├── pnpm-lock.yaml ├── pnpm-workspace.yaml └── tsconfig.json /.eslintrc.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vercel/speed-insights/HEAD/.eslintrc.cjs -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vercel/speed-insights/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/banner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vercel/speed-insights/HEAD/.github/banner.png -------------------------------------------------------------------------------- /.github/composite-actions/install/action.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vercel/speed-insights/HEAD/.github/composite-actions/install/action.yml -------------------------------------------------------------------------------- /.github/pull_request_template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vercel/speed-insights/HEAD/.github/pull_request_template.md -------------------------------------------------------------------------------- /.github/workflows/quality.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vercel/speed-insights/HEAD/.github/workflows/quality.yml -------------------------------------------------------------------------------- /.github/workflows/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vercel/speed-insights/HEAD/.github/workflows/release.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vercel/speed-insights/HEAD/.gitignore -------------------------------------------------------------------------------- /.husky/pre-commit: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env sh 2 | . "$(dirname -- "$0")/_/husky.sh" 3 | 4 | pnpm lint-staged 5 | -------------------------------------------------------------------------------- /.nvmrc: -------------------------------------------------------------------------------- 1 | 22.21.0 -------------------------------------------------------------------------------- /.prettierignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vercel/speed-insights/HEAD/.prettierignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vercel/speed-insights/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | packages/web/README.md -------------------------------------------------------------------------------- /apps/astro/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vercel/speed-insights/HEAD/apps/astro/.gitignore -------------------------------------------------------------------------------- /apps/astro/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vercel/speed-insights/HEAD/apps/astro/README.md -------------------------------------------------------------------------------- /apps/astro/astro.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vercel/speed-insights/HEAD/apps/astro/astro.config.mjs -------------------------------------------------------------------------------- /apps/astro/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vercel/speed-insights/HEAD/apps/astro/package.json -------------------------------------------------------------------------------- /apps/astro/public/favicon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vercel/speed-insights/HEAD/apps/astro/public/favicon.svg -------------------------------------------------------------------------------- /apps/astro/public/fonts/atkinson-bold.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vercel/speed-insights/HEAD/apps/astro/public/fonts/atkinson-bold.woff -------------------------------------------------------------------------------- /apps/astro/public/fonts/atkinson-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vercel/speed-insights/HEAD/apps/astro/public/fonts/atkinson-regular.woff -------------------------------------------------------------------------------- /apps/astro/src/components/BaseHead.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vercel/speed-insights/HEAD/apps/astro/src/components/BaseHead.astro -------------------------------------------------------------------------------- /apps/astro/src/components/FormattedDate.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vercel/speed-insights/HEAD/apps/astro/src/components/FormattedDate.astro -------------------------------------------------------------------------------- /apps/astro/src/components/Header.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vercel/speed-insights/HEAD/apps/astro/src/components/Header.astro -------------------------------------------------------------------------------- /apps/astro/src/components/HeaderLink.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vercel/speed-insights/HEAD/apps/astro/src/components/HeaderLink.astro -------------------------------------------------------------------------------- /apps/astro/src/consts.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vercel/speed-insights/HEAD/apps/astro/src/consts.ts -------------------------------------------------------------------------------- /apps/astro/src/content/blog/first-post.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vercel/speed-insights/HEAD/apps/astro/src/content/blog/first-post.md -------------------------------------------------------------------------------- /apps/astro/src/content/blog/second-post.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vercel/speed-insights/HEAD/apps/astro/src/content/blog/second-post.md -------------------------------------------------------------------------------- /apps/astro/src/content/config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vercel/speed-insights/HEAD/apps/astro/src/content/config.ts -------------------------------------------------------------------------------- /apps/astro/src/env.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vercel/speed-insights/HEAD/apps/astro/src/env.d.ts -------------------------------------------------------------------------------- /apps/astro/src/layouts/BlogPost.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vercel/speed-insights/HEAD/apps/astro/src/layouts/BlogPost.astro -------------------------------------------------------------------------------- /apps/astro/src/pages/about.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vercel/speed-insights/HEAD/apps/astro/src/pages/about.astro -------------------------------------------------------------------------------- /apps/astro/src/pages/blog/[...slug].astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vercel/speed-insights/HEAD/apps/astro/src/pages/blog/[...slug].astro -------------------------------------------------------------------------------- /apps/astro/src/pages/blog/index.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vercel/speed-insights/HEAD/apps/astro/src/pages/blog/index.astro -------------------------------------------------------------------------------- /apps/astro/src/pages/index.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vercel/speed-insights/HEAD/apps/astro/src/pages/index.astro -------------------------------------------------------------------------------- /apps/astro/src/pages/rss.xml.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vercel/speed-insights/HEAD/apps/astro/src/pages/rss.xml.js -------------------------------------------------------------------------------- /apps/astro/src/styles/global.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vercel/speed-insights/HEAD/apps/astro/src/styles/global.css -------------------------------------------------------------------------------- /apps/astro/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vercel/speed-insights/HEAD/apps/astro/tsconfig.json -------------------------------------------------------------------------------- /apps/nextjs/.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vercel/speed-insights/HEAD/apps/nextjs/.eslintrc.json -------------------------------------------------------------------------------- /apps/nextjs/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vercel/speed-insights/HEAD/apps/nextjs/.gitignore -------------------------------------------------------------------------------- /apps/nextjs/app/blog/[slug]/layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vercel/speed-insights/HEAD/apps/nextjs/app/blog/[slug]/layout.tsx -------------------------------------------------------------------------------- /apps/nextjs/app/blog/[slug]/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vercel/speed-insights/HEAD/apps/nextjs/app/blog/[slug]/page.tsx -------------------------------------------------------------------------------- /apps/nextjs/app/blog/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vercel/speed-insights/HEAD/apps/nextjs/app/blog/page.tsx -------------------------------------------------------------------------------- /apps/nextjs/app/layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vercel/speed-insights/HEAD/apps/nextjs/app/layout.tsx -------------------------------------------------------------------------------- /apps/nextjs/next.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vercel/speed-insights/HEAD/apps/nextjs/next.config.js -------------------------------------------------------------------------------- /apps/nextjs/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vercel/speed-insights/HEAD/apps/nextjs/package.json -------------------------------------------------------------------------------- /apps/nextjs/pages/_app.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vercel/speed-insights/HEAD/apps/nextjs/pages/_app.tsx -------------------------------------------------------------------------------- /apps/nextjs/pages/blog-pages/[slug].tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vercel/speed-insights/HEAD/apps/nextjs/pages/blog-pages/[slug].tsx -------------------------------------------------------------------------------- /apps/nextjs/pages/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vercel/speed-insights/HEAD/apps/nextjs/pages/index.tsx -------------------------------------------------------------------------------- /apps/nextjs/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vercel/speed-insights/HEAD/apps/nextjs/tsconfig.json -------------------------------------------------------------------------------- /apps/nuxt/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vercel/speed-insights/HEAD/apps/nuxt/.gitignore -------------------------------------------------------------------------------- /apps/nuxt/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vercel/speed-insights/HEAD/apps/nuxt/README.md -------------------------------------------------------------------------------- /apps/nuxt/assets/base.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vercel/speed-insights/HEAD/apps/nuxt/assets/base.css -------------------------------------------------------------------------------- /apps/nuxt/assets/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vercel/speed-insights/HEAD/apps/nuxt/assets/logo.svg -------------------------------------------------------------------------------- /apps/nuxt/assets/main.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vercel/speed-insights/HEAD/apps/nuxt/assets/main.css -------------------------------------------------------------------------------- /apps/nuxt/components/HelloWorld.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vercel/speed-insights/HEAD/apps/nuxt/components/HelloWorld.vue -------------------------------------------------------------------------------- /apps/nuxt/layouts/default.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vercel/speed-insights/HEAD/apps/nuxt/layouts/default.vue -------------------------------------------------------------------------------- /apps/nuxt/nuxt.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vercel/speed-insights/HEAD/apps/nuxt/nuxt.config.ts -------------------------------------------------------------------------------- /apps/nuxt/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vercel/speed-insights/HEAD/apps/nuxt/package.json -------------------------------------------------------------------------------- /apps/nuxt/pages/blog/[category]/[slug].vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vercel/speed-insights/HEAD/apps/nuxt/pages/blog/[category]/[slug].vue -------------------------------------------------------------------------------- /apps/nuxt/pages/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vercel/speed-insights/HEAD/apps/nuxt/pages/index.vue -------------------------------------------------------------------------------- /apps/nuxt/public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vercel/speed-insights/HEAD/apps/nuxt/public/favicon.ico -------------------------------------------------------------------------------- /apps/nuxt/server/tsconfig.json: -------------------------------------------------------------------------------- 1 | { 2 | "extends": "../.nuxt/tsconfig.server.json" 3 | } 4 | -------------------------------------------------------------------------------- /apps/nuxt/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vercel/speed-insights/HEAD/apps/nuxt/tsconfig.json -------------------------------------------------------------------------------- /apps/remix/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vercel/speed-insights/HEAD/apps/remix/.gitignore -------------------------------------------------------------------------------- /apps/remix/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vercel/speed-insights/HEAD/apps/remix/README.md -------------------------------------------------------------------------------- /apps/remix/app/root.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vercel/speed-insights/HEAD/apps/remix/app/root.tsx -------------------------------------------------------------------------------- /apps/remix/app/routes/_index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vercel/speed-insights/HEAD/apps/remix/app/routes/_index.tsx -------------------------------------------------------------------------------- /apps/remix/app/routes/blog.$slug.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vercel/speed-insights/HEAD/apps/remix/app/routes/blog.$slug.tsx -------------------------------------------------------------------------------- /apps/remix/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vercel/speed-insights/HEAD/apps/remix/package.json -------------------------------------------------------------------------------- /apps/remix/public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vercel/speed-insights/HEAD/apps/remix/public/favicon.ico -------------------------------------------------------------------------------- /apps/remix/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vercel/speed-insights/HEAD/apps/remix/tsconfig.json -------------------------------------------------------------------------------- /apps/remix/vite.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vercel/speed-insights/HEAD/apps/remix/vite.config.ts -------------------------------------------------------------------------------- /apps/sveltekit/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vercel/speed-insights/HEAD/apps/sveltekit/.gitignore -------------------------------------------------------------------------------- /apps/sveltekit/.npmrc: -------------------------------------------------------------------------------- 1 | engine-strict=true 2 | -------------------------------------------------------------------------------- /apps/sveltekit/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vercel/speed-insights/HEAD/apps/sveltekit/README.md -------------------------------------------------------------------------------- /apps/sveltekit/jsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vercel/speed-insights/HEAD/apps/sveltekit/jsconfig.json -------------------------------------------------------------------------------- /apps/sveltekit/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vercel/speed-insights/HEAD/apps/sveltekit/package.json -------------------------------------------------------------------------------- /apps/sveltekit/src/app.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vercel/speed-insights/HEAD/apps/sveltekit/src/app.d.ts -------------------------------------------------------------------------------- /apps/sveltekit/src/app.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vercel/speed-insights/HEAD/apps/sveltekit/src/app.html -------------------------------------------------------------------------------- /apps/sveltekit/src/routes/+layout.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vercel/speed-insights/HEAD/apps/sveltekit/src/routes/+layout.js -------------------------------------------------------------------------------- /apps/sveltekit/src/routes/+page.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vercel/speed-insights/HEAD/apps/sveltekit/src/routes/+page.svelte -------------------------------------------------------------------------------- /apps/sveltekit/src/routes/[slug]/+page.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vercel/speed-insights/HEAD/apps/sveltekit/src/routes/[slug]/+page.svelte -------------------------------------------------------------------------------- /apps/sveltekit/static/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vercel/speed-insights/HEAD/apps/sveltekit/static/favicon.png -------------------------------------------------------------------------------- /apps/sveltekit/svelte.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vercel/speed-insights/HEAD/apps/sveltekit/svelte.config.js -------------------------------------------------------------------------------- /apps/sveltekit/vite.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vercel/speed-insights/HEAD/apps/sveltekit/vite.config.js -------------------------------------------------------------------------------- /apps/vue/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vercel/speed-insights/HEAD/apps/vue/.gitignore -------------------------------------------------------------------------------- /apps/vue/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vercel/speed-insights/HEAD/apps/vue/README.md -------------------------------------------------------------------------------- /apps/vue/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vercel/speed-insights/HEAD/apps/vue/index.html -------------------------------------------------------------------------------- /apps/vue/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vercel/speed-insights/HEAD/apps/vue/package.json -------------------------------------------------------------------------------- /apps/vue/public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vercel/speed-insights/HEAD/apps/vue/public/favicon.ico -------------------------------------------------------------------------------- /apps/vue/src/App.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vercel/speed-insights/HEAD/apps/vue/src/App.vue -------------------------------------------------------------------------------- /apps/vue/src/assets/base.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vercel/speed-insights/HEAD/apps/vue/src/assets/base.css -------------------------------------------------------------------------------- /apps/vue/src/assets/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vercel/speed-insights/HEAD/apps/vue/src/assets/logo.svg -------------------------------------------------------------------------------- /apps/vue/src/assets/main.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vercel/speed-insights/HEAD/apps/vue/src/assets/main.css -------------------------------------------------------------------------------- /apps/vue/src/components/HelloWorld.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vercel/speed-insights/HEAD/apps/vue/src/components/HelloWorld.vue -------------------------------------------------------------------------------- /apps/vue/src/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vercel/speed-insights/HEAD/apps/vue/src/main.js -------------------------------------------------------------------------------- /apps/vue/vite.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vercel/speed-insights/HEAD/apps/vue/vite.config.js -------------------------------------------------------------------------------- /lint-staged.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vercel/speed-insights/HEAD/lint-staged.config.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vercel/speed-insights/HEAD/package.json -------------------------------------------------------------------------------- /packages/web/.eslintrc.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vercel/speed-insights/HEAD/packages/web/.eslintrc.cjs -------------------------------------------------------------------------------- /packages/web/.npmignore: -------------------------------------------------------------------------------- 1 | src -------------------------------------------------------------------------------- /packages/web/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vercel/speed-insights/HEAD/packages/web/LICENSE -------------------------------------------------------------------------------- /packages/web/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vercel/speed-insights/HEAD/packages/web/README.md -------------------------------------------------------------------------------- /packages/web/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vercel/speed-insights/HEAD/packages/web/package.json -------------------------------------------------------------------------------- /packages/web/src/astro/component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vercel/speed-insights/HEAD/packages/web/src/astro/component.ts -------------------------------------------------------------------------------- /packages/web/src/astro/index.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vercel/speed-insights/HEAD/packages/web/src/astro/index.astro -------------------------------------------------------------------------------- /packages/web/src/generic.server.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vercel/speed-insights/HEAD/packages/web/src/generic.server.test.ts -------------------------------------------------------------------------------- /packages/web/src/generic.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vercel/speed-insights/HEAD/packages/web/src/generic.test.ts -------------------------------------------------------------------------------- /packages/web/src/generic.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vercel/speed-insights/HEAD/packages/web/src/generic.ts -------------------------------------------------------------------------------- /packages/web/src/nextjs/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vercel/speed-insights/HEAD/packages/web/src/nextjs/index.tsx -------------------------------------------------------------------------------- /packages/web/src/nextjs/utils.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vercel/speed-insights/HEAD/packages/web/src/nextjs/utils.test.ts -------------------------------------------------------------------------------- /packages/web/src/nextjs/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vercel/speed-insights/HEAD/packages/web/src/nextjs/utils.ts -------------------------------------------------------------------------------- /packages/web/src/nuxt/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vercel/speed-insights/HEAD/packages/web/src/nuxt/index.ts -------------------------------------------------------------------------------- /packages/web/src/queue.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vercel/speed-insights/HEAD/packages/web/src/queue.ts -------------------------------------------------------------------------------- /packages/web/src/react/index.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vercel/speed-insights/HEAD/packages/web/src/react/index.test.tsx -------------------------------------------------------------------------------- /packages/web/src/react/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vercel/speed-insights/HEAD/packages/web/src/react/index.tsx -------------------------------------------------------------------------------- /packages/web/src/react/utils.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vercel/speed-insights/HEAD/packages/web/src/react/utils.test.ts -------------------------------------------------------------------------------- /packages/web/src/react/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vercel/speed-insights/HEAD/packages/web/src/react/utils.ts -------------------------------------------------------------------------------- /packages/web/src/remix/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vercel/speed-insights/HEAD/packages/web/src/remix/index.tsx -------------------------------------------------------------------------------- /packages/web/src/remix/utils.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vercel/speed-insights/HEAD/packages/web/src/remix/utils.test.ts -------------------------------------------------------------------------------- /packages/web/src/remix/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vercel/speed-insights/HEAD/packages/web/src/remix/utils.ts -------------------------------------------------------------------------------- /packages/web/src/sveltekit/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vercel/speed-insights/HEAD/packages/web/src/sveltekit/index.ts -------------------------------------------------------------------------------- /packages/web/src/sveltekit/utils.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vercel/speed-insights/HEAD/packages/web/src/sveltekit/utils.test.ts -------------------------------------------------------------------------------- /packages/web/src/sveltekit/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vercel/speed-insights/HEAD/packages/web/src/sveltekit/utils.ts -------------------------------------------------------------------------------- /packages/web/src/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vercel/speed-insights/HEAD/packages/web/src/types.ts -------------------------------------------------------------------------------- /packages/web/src/utils.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vercel/speed-insights/HEAD/packages/web/src/utils.test.ts -------------------------------------------------------------------------------- /packages/web/src/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vercel/speed-insights/HEAD/packages/web/src/utils.ts -------------------------------------------------------------------------------- /packages/web/src/vue/create-component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vercel/speed-insights/HEAD/packages/web/src/vue/create-component.ts -------------------------------------------------------------------------------- /packages/web/src/vue/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vercel/speed-insights/HEAD/packages/web/src/vue/index.ts -------------------------------------------------------------------------------- /packages/web/src/vue/utils.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vercel/speed-insights/HEAD/packages/web/src/vue/utils.test.ts -------------------------------------------------------------------------------- /packages/web/src/vue/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vercel/speed-insights/HEAD/packages/web/src/vue/utils.ts -------------------------------------------------------------------------------- /packages/web/test.setup.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vercel/speed-insights/HEAD/packages/web/test.setup.ts -------------------------------------------------------------------------------- /packages/web/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vercel/speed-insights/HEAD/packages/web/tsconfig.json -------------------------------------------------------------------------------- /packages/web/tsup.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vercel/speed-insights/HEAD/packages/web/tsup.config.js -------------------------------------------------------------------------------- /packages/web/vitest.config.mts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vercel/speed-insights/HEAD/packages/web/vitest.config.mts -------------------------------------------------------------------------------- /pnpm-lock.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vercel/speed-insights/HEAD/pnpm-lock.yaml -------------------------------------------------------------------------------- /pnpm-workspace.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vercel/speed-insights/HEAD/pnpm-workspace.yaml -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vercel/speed-insights/HEAD/tsconfig.json --------------------------------------------------------------------------------