30 lines
802 B
JavaScript
30 lines
802 B
JavaScript
window.config = {
|
|
routerBasename: '/',
|
|
// whiteLabelling: {},
|
|
extensions: [],
|
|
modes: [],
|
|
showStudyList: true,
|
|
// filterQueryParam: false,
|
|
dataSources: [
|
|
{
|
|
friendlyName: 'dcmjs DICOMWeb Server',
|
|
namespace: 'org.ohif.default.dataSourcesModule.dicomweb',
|
|
sourceName: 'dicomweb',
|
|
configuration: {
|
|
name: 'DCM4CHEE',
|
|
wadoUriRoot: 'http://localhost:5985',
|
|
qidoRoot: 'http://localhost:5985',
|
|
wadoRoot: 'http://localhost:5985',
|
|
qidoSupportsIncludeField: true,
|
|
supportsReject: true,
|
|
imageRendering: 'wadouri',
|
|
thumbnailRendering: 'wadouri',
|
|
enableStudyLazyLoad: true,
|
|
supportsFuzzyMatching: true,
|
|
supportsWildcard: true,
|
|
},
|
|
},
|
|
],
|
|
defaultDataSourceName: 'dicomweb',
|
|
};
|