From e08c4ada21a3b06a1b60b5111fac1a64f7aeb15c Mon Sep 17 00:00:00 2001 From: goncy Date: Wed, 4 Sep 2024 14:25:24 -0300 Subject: [PATCH] Update stale times --- next.config.js | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/next.config.js b/next.config.js index 3dd7ef1..e7f711a 100644 --- a/next.config.js +++ b/next.config.js @@ -1,4 +1,10 @@ /** @type {import('next').NextConfig} */ module.exports = { reactStrictMode: true, + experimental: { + staleTimes: { + static: 900, + dynamic: 0, + }, + }, };