nextjs_zzyxyz/next.config.ts
ZZY 73917d6001 dev feat(markcard, static): 实现书签卡片功能和静态资源获取
- 书签卡片相关的组件和页面
- 实现书签数据的获取、添加、编辑和删除功能
- 添加用户验证和权限控制
- 优化页面布局和样式
2024-12-22 15:21:07 +08:00

29 lines
732 B
TypeScript

import type { NextConfig } from "next";
const nextConfig: NextConfig = {
async headers() {
/** https://nextjs.org/docs/app/building-your-application/deploying#streaming-and-suspense
* The Next.js App Router supports streaming responses when self-hosting.
*
* If you are using Nginx or a similar proxy, you will need to configure it
* to disable buffering to enable streaming.
*
* For example, you can disable buffering in Nginx by setting X-Accel-Buffering to no:
*/
return [
{
source: '/:path*{/}?',
headers: [
{
key: 'X-Accel-Buffering',
value: 'no',
},
],
},
]
},
}
export default nextConfig;