LoginSignup
0
0

【Next.js】最適化された画像のキャッシュ期間を変更する方法

Last updated at Posted at 2024-04-26

next.config.jsに以下のように記述すると最適化された画像のキャッシュ期間を変更できます。
デフォルトでは60秒になっています。

module.exports = {
  images: {
    minimumCacheTTL: 60,
  },
}

個別で変更する場合には headers を使用して Cache-Controlヘッダーを設定します。

0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0