38 lines
1.2 KiB
JavaScript
38 lines
1.2 KiB
JavaScript
/** @type {AppTypes.Config} */
|
|
window.config = {
|
|
routerBasename: '/',
|
|
modes: [],
|
|
extensions: [],
|
|
showStudyList: true,
|
|
// below flag is for performance reasons, but it might not work for all servers
|
|
showWarningMessageForCrossOrigin: true,
|
|
strictZSpacingForVolumeViewport: true,
|
|
showCPUFallbackMessage: true,
|
|
defaultDataSourceName: 'dicomweb',
|
|
dataSources: [
|
|
{
|
|
namespace: '@ohif/extension-default.dataSourcesModule.dicomweb',
|
|
sourceName: 'dicomweb',
|
|
configuration: {
|
|
friendlyName: 'DCM4CHEE Server',
|
|
name: 'DCM4CHEE',
|
|
wadoUriRoot: 'https://d14fa38qiwhyfd.cloudfront.net/dicomweb',
|
|
qidoRoot: 'https://d14fa38qiwhyfd.cloudfront.net/dicomweb',
|
|
wadoRoot: 'https://d14fa38qiwhyfd.cloudfront.net/dicomweb',
|
|
qidoSupportsIncludeField: true,
|
|
imageRendering: 'wadors',
|
|
enableStudyLazyLoad: true,
|
|
bulkDataURI: {
|
|
enabled: false,
|
|
},
|
|
omitQuotationForMultipartRequest: true,
|
|
},
|
|
},
|
|
],
|
|
i18n: {
|
|
LOCIZE_PROJECTID: 'a8da3f9a-e467-4dd6-af33-474d582a0294',
|
|
LOCIZE_API_KEY: null, // Developers can use this to do in-context editing. DO NOT COMMIT THIS KEY!
|
|
USE_LOCIZE: true,
|
|
},
|
|
};
|