mirror of
https://github.com/tencentmusic/supersonic.git
synced 2025-12-14 22:25:19 +00:00
27 lines
628 B
TypeScript
27 lines
628 B
TypeScript
import { ProLayoutProps } from '@ant-design/pro-components';
|
|
export type DefaultSetting = ProLayoutProps & {
|
|
pwa?: boolean;
|
|
logo?: string;
|
|
};
|
|
const Settings: DefaultSetting = {
|
|
navTheme: 'light',
|
|
colorPrimary: '#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 const basePath = '/webapp/';
|
|
|
|
export default Settings;
|