8 lines
223 B
JavaScript
8 lines
223 B
JavaScript
// Configuration for the BTC Trading Dashboard
|
|
// This file allows the dashboard to connect to any backend API URL.
|
|
|
|
window.APP_CONFIG = {
|
|
// URL of the backend API
|
|
API_BASE_URL: 'http://20.20.20.20:8000/api/v1'
|
|
};
|