Mirror of https://github.com/improsocial/impro An extensible Bluesky client for web impro.social
5

Configure Feed

Select the types of activity you want to include in your feed.

Add cache salt

Grace Kind (Jul 11, 2026, 1:26 PM -0500) 4d2a3bf7 acc1892b

+4
+4
eleventy.config.js
··· 17 17 18 18 const BUILD_DIR = process.env.BUILD_DIR || "build"; 19 19 20 + // Bump to bust cache 21 + const CACHE_SALT = "1"; 22 + 20 23 export default async function (eleventyConfig) { 21 24 eleventyConfig.addPassthroughCopy("src/js"); 22 25 eleventyConfig.addPassthroughCopy("src/css"); ··· 126 129 const hashedUrlPath = (filePath) => { 127 130 const hash = crypto 128 131 .createHash("sha256") 132 + .update(CACHE_SALT) 129 133 .update(fs.readFileSync(filePath)) 130 134 .digest("hex") 131 135 .slice(0, 10);