Validates whether a configuration has required storage providers.
The configuration object to check
True if the config has storage providers configured
if (hasStorageConfig(config)) { // Safe to use storage-dependent operations await vana.data.uploadFile(file);} else { console.log('Storage not configured - some operations may fail');} Copy
if (hasStorageConfig(config)) { // Safe to use storage-dependent operations await vana.data.uploadFile(file);} else { console.log('Storage not configured - some operations may fail');}
Validates whether a configuration has required storage providers.