Skip to content
Snippets Groups Projects
Unverified Commit b1d3d4f7 authored by Tim Donohue's avatar Tim Donohue Committed by GitHub
Browse files

Remove unnecessary "as ServerConfig" statements

parent c6557ca3
No related branches found
No related tags found
No related merge requests found
......@@ -76,12 +76,12 @@ const processEnv = {
process.env.DSPACE_HOST,
process.env.DSPACE_PORT,
process.env.DSPACE_NAMESPACE,
process.env.DSPACE_SSL) as ServerConfig,
process.env.DSPACE_SSL),
rest: createServerConfig(
process.env.DSPACE_REST_HOST,
process.env.DSPACE_REST_PORT,
process.env.DSPACE_REST_NAMESPACE,
process.env.DSPACE_REST_SSL) as ServerConfig
process.env.DSPACE_REST_SSL)
} as GlobalConfig;
// merge the environment variables with our configuration.
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment