Skip to content

Commit dc482f3

Browse files
committed
fix(loader): fixes CORS issue in unpkg
reverts 351fd73
1 parent c7c8116 commit dc482f3

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/client/loader.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -110,7 +110,7 @@ export function init(
110110
// let's do this!
111111
x.src = resourcesUrl + appCore;
112112
x.setAttribute('type', 'module');
113-
x.setAttribute('crossorigin', 'use-credentials');
113+
x.setAttribute('crossorigin', true);
114114
}
115115

116116
x.setAttribute('data-resources-url', resourcesUrl);

0 commit comments

Comments
 (0)