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 0a4e82d commit 759d09dCopy full SHA for 759d09d
packages/lib/src/dev/expose-development.ts
@@ -53,9 +53,9 @@ export function devExposePlugin(
53
const __federation_import = async (urlImportPath, fsImportPath) => {
54
let importedModule;
55
try {
56
- return await import(urlImportPath);
+ return await import(fsImportPath);
57
}catch(ex) {
58
- return await import(fsImportPath)
+ return await import(urlImportPath);
59
}
60
};
61
export const get =(module) => {
0 commit comments