53 lines
1.6 KiB
JavaScript
53 lines
1.6 KiB
JavaScript
/** @type {AppTypes.Config} */
|
|
window.config = {
|
|
routerBasename: '/ohif-viewer',
|
|
extensions: [],
|
|
modes: [],
|
|
customizationService: {},
|
|
showStudyList: true,
|
|
maxNumberOfWebWorkers: 3,
|
|
showWarningMessageForCrossOrigin: true,
|
|
showCPUFallbackMessage: true,
|
|
showLoadingIndicator: true,
|
|
strictZSpacingForVolumeViewport: true,
|
|
groupEnabledModesFirst: true,
|
|
maxNumRequests: {
|
|
interaction: 100,
|
|
thumbnail: 75,
|
|
prefetch: 25,
|
|
},
|
|
defaultDataSourceName: 'dicomweb',
|
|
dataSources: [
|
|
{
|
|
namespace: '@ohif/extension-default.dataSourcesModule.dicomweb',
|
|
sourceName: 'dicomweb',
|
|
configuration: {
|
|
friendlyName: 'Local Orthanc',
|
|
name: 'Orthanc',
|
|
wadoUriRoot: 'http://127.0.0.1/pacs',
|
|
qidoRoot: 'http://127.0.0.1/pacs',
|
|
wadoRoot: 'http://127.0.0.1/pacs',
|
|
qidoSupportsIncludeField: false,
|
|
imageRendering: 'wadors',
|
|
thumbnailRendering: 'wadors',
|
|
enableStudyLazyLoad: true,
|
|
supportsFuzzyMatching: false,
|
|
supportsWildcard: true,
|
|
staticWado: true,
|
|
singlepart: 'bulkdata,video',
|
|
// whether the data source should use retrieveBulkData to grab metadata,
|
|
// and in case of relative path, what would it be relative to, options
|
|
// are in the series level or study level (some servers like series some study)
|
|
bulkDataURI: {
|
|
enabled: true,
|
|
},
|
|
omitQuotationForMultipartRequest: true,
|
|
},
|
|
},
|
|
],
|
|
httpErrorHandler: error => {
|
|
console.warn(error.status);
|
|
console.warn('test, navigate to https://ohif.org/');
|
|
},
|
|
};
|