@spectrumsense/spectrum-chat-dev
Version:
Embeddable AI Widget - Add trusted, evidence-based answers directly to your website. Simple installation, enterprise-grade security.
17 lines (14 loc) • 383 B
JavaScript
/**
* Local Environment Configuration
* For local development with localhost API
*/
// Override the default configuration for local development
window.SpectrumConfig.overrideConfig({
API_ROOT: 'http://localhost:8000',
ENVIRONMENT: 'local',
DEFAULT_CONFIG: {
...window.SpectrumConfig.getConfig(),
debug: true
}
});
console.log('🔧 Local configuration loaded');