We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 68672d1 commit 97a92faCopy full SHA for 97a92fa
src/virtualModules/virtualRemoteEntry.ts
@@ -40,6 +40,7 @@ export function generateLocalSharedImportMap() {
40
return `
41
const importMap = {
42
${Array.from(getUsedShares())
43
+ .sort()
44
.map(
45
(pkg) => `
46
${JSON.stringify(pkg)}: async () => {
@@ -52,6 +53,7 @@ export function generateLocalSharedImportMap() {
52
53
}
54
const usedShared = {
55
56
57
.map((key) => {
58
const shareItem = getNormalizeShareItem(key);
59
if (!shareItem) return null;
0 commit comments