mirror of
https://github.com/tencentmusic/supersonic.git
synced 2025-12-13 21:17:08 +00:00
26 lines
540 B
TypeScript
26 lines
540 B
TypeScript
import { Settings as LayoutSettings } from '@ant-design/pro-layout';
|
|
|
|
const Settings: LayoutSettings & {
|
|
pwa?: boolean;
|
|
logo?: string;
|
|
} = {
|
|
navTheme: 'dark',
|
|
primaryColor: '#296DF3',
|
|
layout: 'top',
|
|
contentWidth: 'Fluid',
|
|
fixedHeader: false,
|
|
fixSiderbar: true,
|
|
colorWeak: false,
|
|
title: '',
|
|
pwa: false,
|
|
iconfontUrl: '//at.alicdn.com/t/c/font_4120566_x5c4www9bqm.js',
|
|
splitMenus: true,
|
|
menu: {
|
|
autoClose: false,
|
|
ignoreFlatMenu: true,
|
|
},
|
|
};
|
|
export const publicPath = '/webapp/';
|
|
|
|
export default Settings;
|