my website
0
fork

Configure Feed

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

add view transitions polyfill

+12 -4
+7 -2
deno.lock
··· 5 5 "npm:@astrojs/sitemap@^3.4.1": "3.4.1", 6 6 "npm:@tailwindcss/vite@^4.1.11": "4.1.11_vite@6.3.5__picomatch@4.0.2", 7 7 "npm:astro@^5.9.3": "5.9.3_vite@6.3.5__picomatch@4.0.2_zod@3.25.64", 8 - "npm:tailwindcss@^4.1.11": "4.1.11" 8 + "npm:tailwindcss@^4.1.11": "4.1.11", 9 + "npm:view-transitions-polyfill@^1.0.5": "1.0.5" 9 10 }, 10 11 "npm": { 11 12 "@ampproject/remapping@2.3.0": { ··· 2435 2436 "vfile-message" 2436 2437 ] 2437 2438 }, 2439 + "view-transitions-polyfill@1.0.5": { 2440 + "integrity": "sha512-0KhF4YodPuaAlEd8Xz2sfwVU/bBIRfSNE5dX0zKF8RAFmDqu8UIkVppcxXlamfE7ZdLCM/6qpUdH3zFITD6+Yg==" 2441 + }, 2438 2442 "vite@6.3.5_picomatch@4.0.2": { 2439 2443 "integrity": "sha512-cZn6NDFE7wdTpINgs++ZJ4N49W2vRp8LCKrn3Ob1kYNtOo21vfDoaV5GzBfLU4MovSAB8uNRm4jgzVQZ+mBzPQ==", 2440 2444 "dependencies": [ ··· 2537 2541 "npm:@astrojs/sitemap@^3.4.1", 2538 2542 "npm:@tailwindcss/vite@^4.1.11", 2539 2543 "npm:astro@^5.9.3", 2540 - "npm:tailwindcss@^4.1.11" 2544 + "npm:tailwindcss@^4.1.11", 2545 + "npm:view-transitions-polyfill@^1.0.5" 2541 2546 ] 2542 2547 } 2543 2548 }
+2 -1
package.json
··· 13 13 "@astrojs/sitemap": "^3.4.1", 14 14 "@tailwindcss/vite": "^4.1.11", 15 15 "astro": "^5.9.3", 16 - "tailwindcss": "^4.1.11" 16 + "tailwindcss": "^4.1.11", 17 + "view-transitions-polyfill": "^1.0.5" 17 18 } 18 19 }
+3 -1
src/components/BaseHead.astro
··· 60 60 <meta property="twitter:description" content={description} /> 61 61 <meta property="twitter:image" content={new URL(image, Astro.url)} /> 62 62 63 - <ClientRouter fallback="swap" /> 63 + <script src="view-transitions-polyfill"></script> 64 + 65 + <ClientRouter />