mirror of
https://github.com/LukeHagar/vercel.git
synced 2025-12-06 04:22:01 +00:00
This PR was opened by the [Changesets release](https://github.com/changesets/action) GitHub action. When you're ready to do a release, you can merge this and the packages will be published to npm automatically. If you're not ready to do a release yet, that's fine, whenever you add more changesets to main, this PR will be updated. # Releases ## vercel@32.3.0 ### Minor Changes - [cli] Support northstar users ([#10535](https://github.com/vercel/vercel/pull/10535)) ### Patch Changes - Internal variants ([#10549](https://github.com/vercel/vercel/pull/10549)) - [speed insights] Prepare for migration to new speed insights package ([#10500](https://github.com/vercel/vercel/pull/10500)) - Updated dependencies \[[`b0898a665`](b0898a6659), [`10d4e51ac`](10d4e51ac5), [`decdf27fb`](decdf27fb5), [`f5ca497b7`](f5ca497b75), [`ab329f0fe`](ab329f0fe8), [`d0d052011`](d0d0520111), [`9bb3067de`](9bb3067de2)]: - @vercel/static-build@2.0.7 - @vercel/node@3.0.6 - @vercel/build-utils@7.2.1 - @vercel/next@4.0.7 - @vercel/python@4.0.2 - @vercel/redwood@2.0.3 - @vercel/remix-builder@2.0.7 - @vercel/go@3.0.2 ## @vercel/edge@1.1.0 ### Minor Changes - Add flag to geolocation ([#10443](https://github.com/vercel/vercel/pull/10443)) Usage const { flag } = geolocation(req) ## @vercel/build-utils@7.2.1 ### Patch Changes - Internal variants ([#10549](https://github.com/vercel/vercel/pull/10549)) ## @vercel/client@13.0.4 ### Patch Changes - Updated dependencies \[[`decdf27fb`](decdf27fb5)]: - @vercel/build-utils@7.2.1 ## @vercel/gatsby-plugin-vercel-analytics@1.0.11 ### Patch Changes - Remove "babel" compilation ([#10546](https://github.com/vercel/vercel/pull/10546)) ## @vercel/gatsby-plugin-vercel-builder@2.0.6 ### Patch Changes - Use "esbuild" to build package ([#10508](https://github.com/vercel/vercel/pull/10508)) - Updated dependencies \[[`decdf27fb`](decdf27fb5)]: - @vercel/build-utils@7.2.1 ## @vercel/go@3.0.2 ### Patch Changes - Add support for Go v1.21.0 ([#10552](https://github.com/vercel/vercel/pull/10552)) ## @vercel/next@4.0.7 ### Patch Changes - Internal variants ([#10549](https://github.com/vercel/vercel/pull/10549)) - Update `@vercel/nft` to v0.24.1. ([#10540](https://github.com/vercel/vercel/pull/10540)) - Build package using "esbuild" ([#10482](https://github.com/vercel/vercel/pull/10482)) ## @vercel/node@3.0.6 ### Patch Changes - Use "esbuild" to build package ([#10553](https://github.com/vercel/vercel/pull/10553)) - Update `@vercel/nft` to v0.24.1. ([#10540](https://github.com/vercel/vercel/pull/10540)) - Updated dependencies \[[`decdf27fb`](decdf27fb5)]: - @vercel/build-utils@7.2.1 ## @vercel/python@4.0.2 ### Patch Changes - Fix docs URL in error message ([#10544](https://github.com/vercel/vercel/pull/10544)) ## @vercel/redwood@2.0.3 ### Patch Changes - Update `@vercel/nft` to v0.24.1. ([#10540](https://github.com/vercel/vercel/pull/10540)) ## @vercel/remix-builder@2.0.7 ### Patch Changes - Update `@vercel/nft` to v0.24.1. ([#10540](https://github.com/vercel/vercel/pull/10540)) ## @vercel/static-build@2.0.7 ### Patch Changes - Mark `@vercel/static-config` and `ts-morph` as externals ([#10543](https://github.com/vercel/vercel/pull/10543)) - Updated dependencies \[[`4b376a564`](4b376a564a), [`b8bc682d3`](b8bc682d3e)]: - @vercel/gatsby-plugin-vercel-builder@2.0.6 - @vercel/gatsby-plugin-vercel-analytics@1.0.11 ## @vercel-internals/types@1.0.11 ### Patch Changes - Updated dependencies \[[`decdf27fb`](decdf27fb5)]: - @vercel/build-utils@7.2.1 Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
@vercel/gatsby-plugin-vercel-analytics
⚠️ This repo was migrated from https://github.com/vercel/gatsby-plugin-vercel
This plugin sends Core Web Vitals to Vercel Speed Insights. This plugin is configured by default on Vercel. You do not need to install it manually. For more information, read this post.
Install
npm i @vercel/gatsby-plugin-vercel-analytics
Usage
// gatsby-config.js
module.exports = {
plugins: [
{
resolve: "@vercel/gatsby-plugin-vercel-analytics",
options: {
// (optional) Prints metrics in the console when true
debug: false,
},
},
],
};