mirror of
https://github.com/nocobase/nocobase
synced 2024-11-15 16:34:13 +00:00
24 lines
657 B
TypeScript
24 lines
657 B
TypeScript
import { defineConfig } from 'dumi';
|
|
|
|
export default defineConfig({
|
|
title: ' ',
|
|
hash: true,
|
|
// ssr: {},
|
|
// exportStatic: {},
|
|
mode: 'site',
|
|
logo: 'https://www.nocobase.com/dist/images/logo.png',
|
|
navs: {
|
|
'en-US': [
|
|
null,
|
|
{ title: 'GitHub', path: 'https://github.com/nocobase/nocobase' },
|
|
{ title: 'Changelog', path: 'https://github.com/nocobase/nocobase/releases' },
|
|
],
|
|
'zh-CN': [
|
|
null,
|
|
{ title: 'GitHub', path: 'https://github.com/nocobase/nocobase' },
|
|
{ title: '更新日志', path: 'https://github.com/nocobase/nocobase/releases' },
|
|
],
|
|
},
|
|
// more config: https://d.umijs.org/config
|
|
});
|