皇上,还记得我吗?我就是1999年那个Linux伊甸园啊-----24小时滚动更新开源资讯,全年无休!

Next.js 9.4 发布

Next.js 9.4 已发布,Next.js 是一个用于在服务端渲染 React 应用程序的简单框架。

主要更新内容如下:

export async 
function
 
getStaticProps
()
 {

  
return
 {
    props: await getDataFromCMS(),
    
// we will attempt to re-generate the page:

    
// - when a request comes in

    
// - at most once every second

    unstable_revalidate: 
1

  }
}

详情查看 https://nextjs.org/blog/next-9-4

转自 https://www.oschina.net/news/115590/next-9-4-released