Skip to content

Commit c839db0

Browse files
committed
Make Calendly preconnect CORS-enabled
Requests aren’t marked CORS, but `preconnect` seems to keep the DNS and discard the connection. It must be CORS-enabled. Let’s see. Body (72 chars)
1 parent d2d2c62 commit c839db0

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

contact.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ Or book a free call:
1717

1818
<div class="calendly-inline-widget" data-url="https://calendly.com/csswizardry/30min?background_color=f9f9f9&text_color=333333&primary_color=f43059" style="min-width:320px;height:700px;margin-bottom:1.5rem;"></div>
1919
<script src="https://assets.calendly.com/assets/external/widget.js" async fetchpriority=high></script>
20-
<link rel="preconnect" href="https://calendly.com">
20+
<link rel="preconnect" href="https://calendly.com" crossorigin>
2121

2222
- - -
2323

performance-audits.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -141,4 +141,4 @@ triage the extent of performance issues with your site.
141141

142142
<div class="calendly-inline-widget" data-url="https://calendly.com/csswizardry/fix-it-fast?background_color=f9f9f9&text_color=333333&primary_color=f43059" style="min-width:320px;height:700px;margin-bottom:1.5rem;"></div>
143143
<script src="https://assets.calendly.com/assets/external/widget.js" defer fetchpriority=high></script>
144-
<link rel="preconnect" href="https://calendly.com">
144+
<link rel="preconnect" href="https://calendly.com" crossorigin>

0 commit comments

Comments
 (0)