Skip to content

Fix: replace UNPKG w/ jsDelivr #2154

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Mar 15, 2025
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Fix: replace UNPKG w/ jsDelivr
  • Loading branch information
SukkaW committed Mar 15, 2025
commit b8eb23b5c1d33807cd3729091328831ac2666862
4 changes: 2 additions & 2 deletions src/app/(docs)/docs/installation/(tabs)/play-cdn/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ const steps: Step[] = [
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<!-- [!code highlight:2] -->
<script src="https://unpkg.com/@tailwindcss/browser@4"></script>
<script src="https://cdn.jsdelivr.net/npm/@tailwindcss/browser@4"></script>
</head>
<body>
<!-- [!code highlight:4] -->
Expand Down Expand Up @@ -62,7 +62,7 @@ const steps: Step[] = [
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<script src="https://unpkg.com/@tailwindcss/browser@4"></script>
<script src="https://cdn.jsdelivr.net/npm/@tailwindcss/browser@4"></script>
<!-- [!code highlight:6] -->
<style type="text/tailwindcss">
@theme {
Expand Down