Files
2022-08-23 19:01:53 +08:00

24 lines
601 B
JavaScript

const feSystemsConfig = {
systemsConfig: [
{
ident: 'config',
development: {
publicPath: 'http://localhost:8001/config/',
index: 'http://localhost:8001/config/manifest.json',
},
production: { publicPath: `${process.env.PUBLIC_PATH}/config/`, index: `${process.env.PUBLIC_PATH}/config/manifest.json` },
},
],
feConfig: {
title: 'Know Streaming',
header: {
mode: 'complicated',
logo: '/static/logo-white.png',
subTitle: '管理平台',
theme: '',
right_links: [],
},
},
};
export default feSystemsConfig;