test 版本

This commit is contained in:
donghym
2026-05-31 18:34:36 +08:00
parent ba3b3ad5c8
commit d6bb5c2f51
116 changed files with 2569 additions and 1153 deletions
+5 -5
View File
@@ -1,16 +1,16 @@
import { defineConfig } from 'dumi'
import { defineConfig } from 'dumi'
import { resolve } from 'path'
export default defineConfig({
themeConfig: {
name: 'Nova',
name: 'RustUI',
logo: false,
nav: [
{ title: '指南', link: '/guide' },
{ title: '组件', link: '/components' },
],
socialLinks: {
github: 'https://github.com/donghym/PikaUI',
github: 'https://github.com/donghym/RustUI',
},
sidebarGroupModePath: true,
},
@@ -23,12 +23,12 @@ export default defineConfig({
{ type: 'component', dir: 'src/components/layout' },
{ type: 'component', dir: 'src/components/nav' },
{ type: 'component', dir: 'src/components/entry' },
{ type: 'component', dir: 'src/components/feedback' },
{ type: 'component', dir: 'src/components/display' },
{ type: 'component', dir: 'src/components/feedback' },
],
},
alias: {
'@Pika/ui': resolve(__dirname, 'src'),
'RustUI': resolve(__dirname, 'src'),
},
outputPath: 'dist-docs',
})