You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: src/config/default-app-config.ts
+3Lines changed: 3 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -52,6 +52,9 @@ export class DefaultAppConfig implements AppConfig {
52
52
port: 4000,
53
53
// NOTE: Space is capitalized because 'namespace' is a reserved string in TypeScript
54
54
nameSpace: '/',
55
+
// Specify the public URL that this user interface responds to. This corresponds to the "dspace.ui.url" property in your backend's local.cfg.
56
+
// SSR is only enabled when the client's "Host" HTTP header matches this baseUrl. The baseUrl is also used for redirects and SEO links (in robots.txt).
57
+
baseUrl: 'http://localhost:4000',
55
58
56
59
// The rateLimiter settings limit each IP to a 'limit' of 500 requests per 'windowMs' (1 minute).
0 commit comments