如何正确缓存文件“_next/static/chunks/pages/_app-617442154f9b794b.js”Next.js

问题描述 投票:0回答:0

我可以在

next.config.js

中使用以下设置吗
async headers() {
  return [
    {
      source: '/_next/static/chunks/pages/_app-(.*).js',
      headers: [
        {
          key: 'Cache-Control',
          value: 'public, max-age=60, s-maxage=60, stale-while-revalidate=60',
        },
      ],
    },
  ];
}

路径上有ddos攻击https://exemple.com/_next/static/chunks/pages/_app-53544344f9b794b.js

javascript next
© www.soinside.com 2019 - 2024. All rights reserved.