export interface IConfig { home_page: string; system: string; mode: string; } const config: IConfig = { home_page: '/login', system: 'sso', mode: process.env.BUILD_ENV || 'development', }; export default config;