fix: resolve WASM CDN loading CORS issue and Vite compatibility#15
Merged
Conversation
Patch dotnet.js at build time to use credentials:"omit" instead of "same-origin", fixing CORS errors when loading from CDNs that return Access-Control-Allow-Origin: * wildcard headers. Add @vite-ignore comment to dynamic import to prevent Vite from analyzing the WASM loader path during development builds.
JSv4
added a commit
that referenced
this pull request
Dec 20, 2025
- Change ShadeCache in WmlToHtmlConverter to ConcurrentDictionary - Change _unknownFonts in FontFamilyHelper to ConcurrentDictionary - Use Lazy<T> for thread-safe lazy initialization of KnownFamilies - Add ClearShadeCache() and ClearUnknownFontsCache() for memory management - Add 3 concurrent conversion tests to verify thread-safety - Update gaps documentation to mark issue #15 as fixed
2 tasks
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.
Summary
dotnet.jsat build time to usecredentials:"omit"instead of"same-origin", fixing CORS errors when loading WASM files from CDNs (jsDelivr, unpkg) that returnAccess-Control-Allow-Origin: *wildcard headers@vite-ignorecomment to dynamic import innpm/src/index.tsto prevent Vite from analyzing the WASM loader path during development buildsTest plan
dotnet.jspatch applied correctly (2 instances ofcredentials:"omit"replacingsame-origin)@vite-ignorecomment present in compileddist/index.js