23 lines
613 B
JavaScript
23 lines
613 B
JavaScript
window.config = {
|
|
routerBasename: '/',
|
|
showStudyList: true,
|
|
servers: {
|
|
// This is an array, but we'll only use the first entry for now
|
|
dicomWeb: [
|
|
{
|
|
name: 'Orthanc',
|
|
wadoUriRoot: 'http://127.0.0.1/pacs/wado',
|
|
qidoRoot: 'http://127.0.0.1/pacs/dicom-web',
|
|
wadoRoot: 'http://127.0.0.1/pacs/dicom-web',
|
|
qidoSupportsIncludeField: false,
|
|
imageRendering: 'wadors',
|
|
thumbnailRendering: 'wadors',
|
|
// requestOptions: {
|
|
// undefined to use JWT + Bearer auth
|
|
// auth: 'orthanc:orthanc',
|
|
// },
|
|
},
|
|
],
|
|
},
|
|
};
|