* fix: revert the quotation inclusion for accept header to be off by default * changed all configs
32 lines
935 B
JavaScript
32 lines
935 B
JavaScript
window.config = {
|
|
routerBasename: '/',
|
|
// whiteLabelling: {},
|
|
extensions: [],
|
|
modes: [],
|
|
showStudyList: true,
|
|
// below flag is for performance reasons, but it might not work for all servers
|
|
omitQuotationForMultipartRequest: true,
|
|
// filterQueryParam: false,
|
|
dataSources: [
|
|
{
|
|
friendlyName: 'dcmjs DICOMWeb Server',
|
|
namespace: '@ohif/extension-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: false,
|
|
supportsWildcard: false,
|
|
},
|
|
},
|
|
],
|
|
defaultDataSourceName: 'dicomweb',
|
|
};
|