mirror of
https://github.com/simstudioai/sim.git
synced 2026-01-10 23:48:09 -05:00
* added turborepo * finished turbo migration * updated gitignore * use dotenv & run format * fixed error in docs * remove standalone deployment in prod * fix ts error, remove ignore ts errors during build * added formatter to the end of the docs generator
10 lines
285 B
TypeScript
10 lines
285 B
TypeScript
import { loader } from 'fumadocs-core/source'
|
|
import { docs } from '@/.source'
|
|
|
|
// `loader()` also assign a URL to your pages
|
|
// See https://fumadocs.vercel.app/docs/headless/source-api for more info
|
|
export const source = loader({
|
|
baseUrl: '/',
|
|
source: docs.toFumadocsSource(),
|
|
})
|