any way to make astro rebuilds even faster? #5
Loading…
Reference in New Issue
Block a user
No description provided.
Delete Branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
idea: incremental builds
There's an experimental feature called Incremental Content Caching that can allegedly speed up builds by 80%. Enable it by adding the following to astro.config.mjs:
experimental: {
contentCollectionCache: true,
},
https://astro.build/blog/astro-4/#incremental-content-caching-experimental
Do we know where Astro expects the cache to be stored? I guess if the cache is meant to persist between builds we will need to store it in Drone cache https://laszlo.cloud/the-ultimate-droneci-caching-guide