Files
BTCforPlebs.com/public/assets/js/config.js
2025-09-27 00:30:45 -04:00

7 lines
267 B
JavaScript

// 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'
};