9 lines
253 B
TypeScript
9 lines
253 B
TypeScript
export const environment = {
|
|
default_page: 'main/tutorials/tutorials-all',
|
|
port: 8081,
|
|
production: true,
|
|
fromWeb: true,
|
|
host_name: typeof window !== 'undefined' ? window.location.origin : 'https://default-api.com',
|
|
title: 'JAMBOTRON.COM'
|
|
};
|