mirror of
https://github.com/DSpace/dspace-angular.git
synced 2025-10-07 01:54:15 +00:00
27 lines
866 B
JSON
27 lines
866 B
JSON
{
|
|
"production": false,
|
|
// Location of REST API
|
|
"rest": {
|
|
// By default, we are currently using a local proxy running on port 5050.
|
|
// This is necessary because our actual REST API doesn't provide CORS headers yet!
|
|
// The actual REST API path is in the 'proxy' settings below.
|
|
// NOTE: Space is capitalized because 'namespace' is a reserved string in TypeScript
|
|
"nameSpace": "",
|
|
"baseURL": ""
|
|
},
|
|
// REST Location that we are proxying (see src/proxy.ts)
|
|
// (Since we are using a proxy at this time, the actual REST API goes here)
|
|
"proxy": {
|
|
"nameSpace": "",
|
|
"baseURL": ""
|
|
// E.g. to use demo.dspace.org REST API, use the below values *instead*
|
|
//nameSpace: '/rest',
|
|
//baseURL: 'https://demo.dspace.org'
|
|
},
|
|
// Path and Port in use for this Angular2 UI
|
|
"ui": {
|
|
"nameSpace": "",
|
|
"baseURL": ""
|
|
}
|
|
}
|