feat: migrate image CDN default from decoims.com to assets.decocms.com - #495
Open
JonasJesus42 wants to merge 1 commit into
Open
feat: migrate image CDN default from decoims.com to assets.decocms.com#495JonasJesus42 wants to merge 1 commit into
JonasJesus42 wants to merge 1 commit into
Conversation
Drop-in domain replacement to avoid firewall/antivirus blocks on decoims.com. Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Replace the legacy
decoims.comCDN domain withassets.decocms.com, a drop-in replacement that is not blocked by firewalls or antivirus software.Changes:
packages/blocks/src/hooks/Image.tsx: update defaultimageCdnDomainvalue and JSDocpackages/blocks-cli/scripts/migrate/templates/routes.ts: update hardcodedpreconnecthint emitted into generated__root.tsxSites that explicitly call
registerImageCdnDomain()are unaffected.Summary by cubic
Migrates the default image CDN from decoims.com to assets.decocms.com to avoid firewall/antivirus blocks. Old behavior: defaulted to decoims.com and emitted a preconnect to that domain; new behavior: defaults to assets.decocms.com and emits a matching preconnect. Sites using
registerImageCdnDomain()are unaffected.packages/blocks: changes the defaultimageCdnDomainand JSDoc insrc/hooks/Image.tsx(drop-in replacement).packages/blocks-cli: migration template now emits a preconnect to https://assets.decocms.com in generated__root.tsx.Written for commit d8e3ac9. Summary will update on new commits.