Files
supersonic/webapp/packages/supersonic-fe/config/defaultSettings.ts
poncheen 5585b9e222
Some checks failed
supersonic CentOS CI / build (21) (push) Has been cancelled
supersonic mac CI / build (21) (push) Has been cancelled
supersonic ubuntu CI / build (21) (push) Has been cancelled
supersonic windows CI / build (21) (push) Has been cancelled
Fix/ts errors in fe (#2218)
2025-04-11 20:58:35 +08:00

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;