app.ts 551 Bytes
Newer Older
hucy's avatar
hucy committed
1 2 3 4
// 开发环境app配置
const development = {
  name: 'TopPMS',
  productName: 'TopPMS',
hucy's avatar
hucy committed
5
  storagePrefix: '__hcytest_',
hucy's avatar
hucy committed
6 7 8 9 10 11 12 13 14
  langs: ['en-US', 'zh-CN', 'zh-TW'],
  serverUrl: { base: 'http://139.196.104.13:9000' },
  //http://192.168.2.100:29010
  base_url: '',
};
// 生产环境app配置
const production = {
  name: 'TopPMS',
  productName: 'TopPMS',
hucy's avatar
hucy committed
15
  storagePrefix: '__hcytest_',
hucy's avatar
hucy committed
16 17 18 19 20 21
  langs: ['en-US', 'zh-CN', 'zh-TW'],
  // serverUrl: { base: '' },
  base_url: '',
};

export default process.env.NODE_ENV === 'production' ? production : development;