my website
0
fork

Configure Feed

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

Revert "add view transitions polyfill"

This reverts commit 5e4d51ae0730e3834df660a2e177127c8e636857.

+4 -12
+2 -7
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@7.0.4__picomatch@4.0.2", 7 7 "npm:astro@^5.11.1": "5.11.1_vite@6.3.5__picomatch@4.0.2_zod@3.25.76", 8 - "npm:tailwindcss@^4.1.11": "4.1.11", 9 - "npm:view-transitions-polyfill@^1.0.5": "1.0.5" 8 + "npm:tailwindcss@^4.1.11": "4.1.11" 10 9 }, 11 10 "npm": { 12 11 "@ampproject/remapping@2.3.0": { ··· 2440 2439 "vfile-message" 2441 2440 ] 2442 2441 }, 2443 - "view-transitions-polyfill@1.0.5": { 2444 - "integrity": "sha512-0KhF4YodPuaAlEd8Xz2sfwVU/bBIRfSNE5dX0zKF8RAFmDqu8UIkVppcxXlamfE7ZdLCM/6qpUdH3zFITD6+Yg==" 2445 - }, 2446 2442 "vite@6.3.5_picomatch@4.0.2": { 2447 2443 "integrity": "sha512-cZn6NDFE7wdTpINgs++ZJ4N49W2vRp8LCKrn3Ob1kYNtOo21vfDoaV5GzBfLU4MovSAB8uNRm4jgzVQZ+mBzPQ==", 2448 2444 "dependencies": [ ··· 2560 2556 "npm:@astrojs/sitemap@^3.4.1", 2561 2557 "npm:@tailwindcss/vite@^4.1.11", 2562 2558 "npm:astro@^5.11.1", 2563 - "npm:tailwindcss@^4.1.11", 2564 - "npm:view-transitions-polyfill@^1.0.5" 2559 + "npm:tailwindcss@^4.1.11" 2565 2560 ] 2566 2561 } 2567 2562 }
+1 -2
package.json
··· 13 13 "@astrojs/sitemap": "^3.4.1", 14 14 "@tailwindcss/vite": "^4.1.11", 15 15 "astro": "^5.11.1", 16 - "tailwindcss": "^4.1.11", 17 - "view-transitions-polyfill": "^1.0.5" 16 + "tailwindcss": "^4.1.11" 18 17 } 19 18 }
+1 -3
src/components/BaseHead.astro
··· 67 67 <meta property="twitter:description" content={description} /> 68 68 <meta property="twitter:image" content={new URL(image, Astro.url)} /> 69 69 70 - <script src="view-transitions-polyfill"></script> 71 - 72 - <ClientRouter /> 70 + <ClientRouter fallback="swap" />