import { App } from '.';
import ComponentAPI from './common/ComponentAPI';

export default {
    mock: undefined as string, // 'case1', // || process.env.ASL_MOCK,
    baseURL: 'http://lcp.vusion.top',
    staticURL: '//static-vusion.163yun.com',
    cookie: '...',
    debug: true,
    debugRequest: false,
    webFileCache: true,
    initialLoadCache: true,
    reloadAlways: false,
    advancedFeatures: false,
    throttleWait: 5000,
    scope: 'pc' as 'pc' | 'h5',
    /**
     * 默认使用的 app，一般来说全局库只会用一个 app
     */
    defaultApp: undefined as App,
    allNodesAPI: undefined as { [name: string]: ComponentAPI },
};
