惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

WordPress大学
WordPress大学
酷 壳 – CoolShell
酷 壳 – CoolShell
小众软件
小众软件
Vercel News
Vercel News
Last Week in AI
Last Week in AI
H
Help Net Security
The Cloudflare Blog
L
LangChain Blog
Microsoft Security Blog
Microsoft Security Blog
B
Blog RSS Feed
云风的 BLOG
云风的 BLOG
I
InfoQ
U
Unit 42
美团技术团队
人人都是产品经理
人人都是产品经理
雷峰网
雷峰网
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
博客园 - 叶小钗
Y
Y Combinator Blog
Hugging Face - Blog
Hugging Face - Blog
A
About on SuperTechFans
宝玉的分享
宝玉的分享
量子位
博客园_首页

Vercel News

Vercel Open Source Program: Winter 2026 cohort How Notion Workers run untrusted code at scale with Vercel Sandbox How we run Vercel's CDN in front of Discourse From idea to secure checkout in minutes with Stripe Building Slack agents can be easy Scaling redirects to infinity on Vercel Advancing Python typing Gamma builds design-first agents with Vercel How Avalara turns pipe dreams into patent-pending with v0 Keeping community human while scaling with agents How OpenEvidence built a healthcare AI that physicians actually trust Security boundaries in agentic architectures Skills Night: 69,000+ ways agents are getting smarter Video Generation with AI Gateway We Ralph Wiggumed WebStreams to make them 10x faster How Stably ships AI testing agents in hours, not weeks How we built AEO tracking for coding agents Anyone can build agents, but it takes a platform to run them Introducing Geist Pixel The Vercel AI Accelerator is back with $6m in credits Making agent-friendly pages with content negotiation The Vercel OSS Bug Bounty program is now available Introducing the new v0 Run untrusted code with Vercel Sandbox, now generally available How Stripe built a game-changing app in a single flight with v0 How Sensay went from zero to product in six weeks AGENTS.md outperforms skills in our agent evals Agent skills explained: An FAQ Testing if "bash is all you need" AWS databases are now live on the Vercel Marketplace and v0
Improved support for Nuxt on Vercel - Vercel – Vercel
Steph Dietz · 2023-05-05 · via Vercel News

2 min read

Nuxt applications can now take advantage of Vercel KV, ISR, and more.

We've been partnering with Nuxt to further integrate the framework with Vercel and support all Vercel products. Nuxt on Vercel now supports:

This builds on the integration with other Vercel products like Functions, Middleware, Image Optimization, and more.

Link to headingVercel KV integration with Nitro Storage

Vercel recently launched Vercel KV, a serverless durable Redis store. We've partnered with the Nuxt team to add support for integrating Vercel KV into Nitro, making fast key-value storage available for your Nuxt apps.

In a few lines of configuration, you can now set up a cache with durable storage for your Nuxt application:

nuxt.config.ts

export default defineNuxtConfig({

nitro: {

storage: {

data: { driver: 'vercelKV' }

}

}

})

Nuxt automatically reads the KV_REST_API_URL and KV_REST_API_TOKEN environment variables for your KV database. Then, you can easily store data in any event handler:

export default eventHandler(async (event) => {

const storage = useStorage('data');

await storage.setItem('userId', 'id');

return {

id: await dataStorage.getItem('userId'),

};

});

View a demo of Vercel KV with Nuxt or see the Nitro docs.

Link to headingStatic and ISR support for Nuxt

Nuxt developers want to choose the best rendering strategy for a given page. With the Nitro 2.4 release, they can now pick between fully static, fully dynamic, or incrementally updated routes with powerful route rules.

nuxt.config.js

export default defineNuxtConfig({

routeRules: {

// all routes will be background revalidated (ISR) at most every 60 seconds

'/**': { isr: 60 },

// this page will be generated on demand and cached permanently

'/static': { isr: true }

},

});

Nuxt's route rules enable you to opt different routes into the optimal rendering strategy.

View a demo of ISR with Nuxt to try out route rules.

Link to headingPartnering with Nuxt

We're thrilled the Nuxt team has chosen to build nuxt.com, nuxtlabs.com, nuxt.studio, volta.net, and more with Vercel.

We love working with Vercel. They share our values of great DX, zero-configuration and best practices built-in. I'm also really pleased to see the new offerings Vercel have been launching this week. I'm confident they will make Nuxt users' lives easier and better.

Daniel Roe

We're excited about our continued sponsorship of the framework and investment into supporting the latest Nuxt features on Vercel.

With Vercel's powerful tools and performance enhancements, Nuxt continues to be a leading choice for web developers looking to build modern, serverless applications.

Link to headingTry Nuxt on Vercel

Vercel supports all features of Nuxt out of the box, now including support for Vercel KV as a durable storage layer.

To leverage Vercel KV storage and ISR features for Nuxt, upgrade your Nuxt project to Nitro >= 2.4.0 with npx nuxi@latest upgrade --force.

Learn more about Nuxt on Vercel or deploy a Nuxt template.