Add http:// to run local

This commit is contained in:
mrcanelas
2025-02-05 16:33:57 -03:00
parent be6a69ae48
commit 3aeeb450dd
+1 -1
View File
@@ -42,5 +42,5 @@ export function generateAddonUrl(config: AddonConfig): string {
// Converter o objeto em string e codificar para URL
const encodedConfig = encodeURIComponent(JSON.stringify(cleanConfig));
return `${window.location.host}/${encodedConfig}/manifest.json`;
return `http://${window.location.host}/${encodedConfig}/manifest.json`;
}