🐛 Fix fix fix

This commit is contained in:
LittleSheep 2024-02-19 17:42:05 +08:00
parent 9a1ddc623b
commit 3da3a6dcf0

View File

@ -56,8 +56,10 @@ export const provider = () => ({
}); });
if (!window.__GARFISH__) { if (!window.__GARFISH__) {
console.log("Running directly!")
render(router, root!); render(router, root!);
} else if (typeof __GARFISH_EXPORTS__ === "object" && __GARFISH_EXPORTS__) { } else if (typeof __GARFISH_EXPORTS__ !== "undefined") {
console.log("Running in launchpad container!")
if (__GARFISH_EXPORTS__.registerProvider) { if (__GARFISH_EXPORTS__.registerProvider) {
__GARFISH_EXPORTS__.registerProvider(provider); __GARFISH_EXPORTS__.registerProvider(provider);
} else { } else {