mirror of
https://github.com/movie-web/docs.git
synced 2025-09-13 02:53:27 +00:00
11 lines
208 B
TypeScript
11 lines
208 B
TypeScript
import type { ThemeConfig } from "nextra"
|
|
|
|
const config: ThemeConfig = {
|
|
logo: <span>My Nextra Documentation</span>,
|
|
project: {
|
|
link: 'https://github.com/shuding/nextra'
|
|
}
|
|
}
|
|
|
|
export default config;
|