fix: web icon isAbsolute (#599)

This commit is contained in:
BiggerRain
2025-06-03 19:28:26 +08:00
committed by GitHub
parent a80a5d928f
commit f23498afa0

View File

@@ -178,7 +178,7 @@ export const createWebAdapter = (): WebPlatformAdapter => {
async metadata(path, options = {}) {
console.log("metadata is not supported in web environment", path, options);
return Promise.resolve({});
return Promise.resolve({ isAbsolute: false });
},
};
};