Update API base URL to 'http://goyave' in background, options, and popup scripts
All checks were successful
Create Release / build-and-release (push) Successful in 6s

This commit is contained in:
JSC
2025-10-07 13:49:47 +02:00
parent f12913024b
commit b06655ff11
4 changed files with 9 additions and 9 deletions

View File

@@ -24,7 +24,7 @@ document.addEventListener('DOMContentLoaded', async () => {
// Check API token configuration
const result = await chrome.storage.sync.get(['apiToken', 'apiBaseUrl']);
const apiToken = result.apiToken;
const apiBaseUrl = result.apiBaseUrl || 'http://192-168-100-199.sslip.io';
const apiBaseUrl = result.apiBaseUrl || 'http://goyave';
if (!apiToken) {
warning.classList.remove('hidden');