This commit is contained in:
2025-09-27 00:30:45 -04:00
parent 97ae2a7811
commit c3d8893436
3 changed files with 15 additions and 4 deletions

View File

@@ -0,0 +1,7 @@
// Configuration for the frontend
const config = {
// Use services.btcforplebs.com in production, localhost in development
apiBaseUrl: window.location.hostname === 'localhost'
? 'http://localhost:5252'
: 'https://services.btcforplebs.com'
};