mirror of
https://github.com/tencentmusic/supersonic.git
synced 2025-12-10 19:51:00 +00:00
27 lines
566 B
TypeScript
27 lines
566 B
TypeScript
import { Settings as LayoutSettings } from '@ant-design/pro-layout';
|
|
|
|
const Settings: LayoutSettings & {
|
|
pwa?: boolean;
|
|
logo?: string;
|
|
} = {
|
|
navTheme: 'light',
|
|
primaryColor: '#296DF3',
|
|
layout: 'mix',
|
|
contentWidth: 'Fluid',
|
|
fixedHeader: false,
|
|
fixSiderbar: true,
|
|
colorWeak: false,
|
|
title: '',
|
|
pwa: false,
|
|
iconfontUrl: '//at.alicdn.com/t/c/font_4120566_qiku6b2kol.js',
|
|
splitMenus: true,
|
|
menu: {
|
|
defaultOpenAll: true,
|
|
autoClose: false,
|
|
ignoreFlatMenu: true,
|
|
},
|
|
};
|
|
export const publicPath = '/webapp/';
|
|
|
|
export default Settings;
|