import { defineConfig } from 'astro/config';
import tailwind from "<@&1055234544183287879>/tailwind";
import db from "<@&1055234544183287879>/db";
import react from "<@&1055234544183287879>/react";
import clerk from "astro-clerk-auth";
import vercel from "<@&1055234544183287879>/vercel/serverless";
// https://astro.build/config
export default defineConfig({
integrations: [tailwind(), db(), react(), clerk()],
output: "server",
adapter: vercel({
isr: {
expiration: 60 * 60 * 8,
exclude: ["/dashboard/(.*)", "/dashboard/", "/dashboard", "/sign-in", "/sign-up"]
}
})
});
I'm expecting with this that the home page and other than excluded pages would be revalidated every 8 hours? But that doesnt seem to be the case, how can i achive that?