Skip to content

Commit 8ce7936

Browse files
authored
Fix: replace UNPKG w/ jsDelivr (tailwindlabs#2154)
UNPKG has not been actively maintained and ~~has been down since `Mar 15, 2025`~~ was down from Mar 15, 2025, 2:00 AM and down for 18 hours (unpkg/unpkg#412). Migrating to jsDelivr means a more stable and reliant service. The PR replaces UNPKG usage with jsDelivr. The PR fixes tailwindlabs/tailwindcss#17215 and tailwindlabs/tailwindcss#17216
1 parent c55eeed commit 8ce7936

File tree

1 file changed

+2
-2
lines changed
  • src/app/(docs)/docs/installation/(tabs)/play-cdn

1 file changed

+2
-2
lines changed

src/app/(docs)/docs/installation/(tabs)/play-cdn/page.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ const steps: Step[] = [
3434
<meta charset="UTF-8" />
3535
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
3636
<!-- [!code highlight:2] -->
37-
<script src="https://unpkg.com/@tailwindcss/browser@4"></script>
37+
<script src="https://cdn.jsdelivr.net/npm/@tailwindcss/browser@4"></script>
3838
</head>
3939
<body>
4040
<!-- [!code highlight:4] -->
@@ -62,7 +62,7 @@ const steps: Step[] = [
6262
<head>
6363
<meta charset="UTF-8" />
6464
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
65-
<script src="https://unpkg.com/@tailwindcss/browser@4"></script>
65+
<script src="https://cdn.jsdelivr.net/npm/@tailwindcss/browser@4"></script>
6666
<!-- [!code highlight:6] -->
6767
<style type="text/tailwindcss">
6868
@theme {

0 commit comments

Comments
 (0)