github withastro/astro @astrojs/vercel@5.0.0

latest releases: astro@4.15.8, @astrojs/mdx@3.1.7, astro@4.15.7...
12 months ago

Major Changes

  • #8445 91380378c Thanks @Princesseuh! - Adds a configuration option devImageService to choose which of the built-in image services to use in development. Defaults to sharp.

  • #8546 b79e11f3c Thanks @matthewp! - Turn off functionPerRoute by default

    In the previous version of @astrojs/vercel, the default for functionPerRoute was changed to true. While this option has several advantages, if you're a free tier user you are likely to run into the limit of 12 functions per deployment. This will result in an error when you attempt to deploy.

    For this reason, the functionPerRoute option is now back to defaulting to false. It's still a useful option if you have a paid plan and have previously run into issues with your single function exceeding the size limits.

Minor Changes

  • #8021 2e8726fee Thanks @chriswdmr! - Enable Vercel Speed Insights and Vercel Web Analytics individually.
    Deprecates the analytics property in astro.config.mjs in favor of speedInsights and webAnalytics.

    If you're using the analytics property, you'll need to update your config to use the new properties:

    // astro.config.mjs
    export default defineConfig({
    	adapter: vercel({
    -		analytics: true,
    +		webAnalytics: {
    +			enabled: true
    +		},
    +		speedInsights: {
    +			enabled: true
    +		}
    	})
    });

    Allow configuration of Web Analytics with all available configuration options.
    Bumps @vercel/analytics package to the latest version.

Patch Changes

Don't miss a new astro release

NewReleases is sending notifications on new releases.