2019-04-30 15:32:53 +02:00
|
|
|
window.config = {
|
|
|
|
|
routerBasename: '/',
|
2019-07-08 21:29:59 +02:00
|
|
|
showStudyList: true,
|
2021-05-28 20:32:48 +02:00
|
|
|
extensions: [],
|
|
|
|
|
modes: [],
|
2022-11-04 14:01:34 +01:00
|
|
|
// below flag is for performance reasons, but it might not work for all servers
|
|
|
|
|
omitQuotationForMultipartRequest: true,
|
2022-11-16 20:19:52 +01:00
|
|
|
showLoadingIndicator: true,
|
2021-05-28 20:32:48 +02:00
|
|
|
dataSources: [
|
|
|
|
|
{
|
|
|
|
|
friendlyName: 'DCM4CHEE Server',
|
2022-04-06 19:28:42 +02:00
|
|
|
namespace: '@ohif/extension-default.dataSourcesModule.dicomweb',
|
2021-05-28 20:32:48 +02:00
|
|
|
sourceName: 'dicomweb',
|
|
|
|
|
configuration: {
|
2019-04-30 15:32:53 +02:00
|
|
|
name: 'DCM4CHEE',
|
|
|
|
|
wadoUriRoot: 'http://localhost:8080/dcm4chee-arc/aets/DCM4CHEE/wado',
|
|
|
|
|
qidoRoot: 'http://localhost:8080/dcm4chee-arc/aets/DCM4CHEE/rs',
|
|
|
|
|
wadoRoot: 'http://localhost:8080/dcm4chee-arc/aets/DCM4CHEE/rs',
|
|
|
|
|
qidoSupportsIncludeField: true,
|
|
|
|
|
imageRendering: 'wadors',
|
2022-11-16 20:19:52 +01:00
|
|
|
enableStudyLazyLoad: true,
|
2019-04-30 15:32:53 +02:00
|
|
|
thumbnailRendering: 'wadors',
|
|
|
|
|
requestOptions: {
|
|
|
|
|
auth: 'admin:admin',
|
|
|
|
|
},
|
|
|
|
|
},
|
2021-05-28 20:32:48 +02:00
|
|
|
},
|
|
|
|
|
],
|
2019-07-26 15:04:28 +02:00
|
|
|
studyListFunctionsEnabled: true,
|
2021-05-28 20:32:48 +02:00
|
|
|
defaultDataSourceName: 'dicomweb',
|
2019-09-09 21:49:12 +02:00
|
|
|
};
|