File size: 380 Bytes
5ae7c8f | 1 2 3 4 5 6 7 8 9 10 11 | const CONFIG = {
// For Python Backend, we use relative paths since we serve frontend from the same server.
// If running separately, use 'http://localhost:5000'
N8N_BASE_URL: ''
};
function updateConfig(url) {
// Legacy function, no longer needed for Python version but kept for compatibility
console.log("Config update ignored in Python mode");
}
|