mirror of
https://github.com/DSpace/dspace-angular.git
synced 2025-10-18 07:23:03 +00:00
12 lines
333 B
TypeScript
12 lines
333 B
TypeScript
import { GlobalConfig } from '../config/global-config.interface';
|
|
|
|
export const environment: Partial<GlobalConfig> = {
|
|
rest: {
|
|
ssl: false,
|
|
host: 'localhost',
|
|
port: 8080,
|
|
// NOTE: Space is capitalized because 'namespace' is a reserved string in TypeScript
|
|
nameSpace: '/server/api'
|
|
}
|
|
};
|