Skip to content

Releases: fuma-nama/fumadocs

[email protected]

29 Nov 09:08
70491bb

Choose a tag to compare

@fumadocs/[email protected]

29 Nov 09:08
70491bb

Choose a tag to compare

Minor Changes

  • 897fdef: Update customise command to support Fumadocs UI 16.2.0

[email protected]

21 Nov 13:02
cbf7aaf

Choose a tag to compare

Patch Changes

[email protected]

21 Nov 13:02
cbf7aaf

Choose a tag to compare

Patch Changes

[email protected]

21 Nov 13:02
cbf7aaf

Choose a tag to compare

Minor Changes

  • 15bd183: [Loader API] Default the type of plugins to LoaderPluginOption[]

    It should no longer enforce type checks on custom properties from your content source.

    For creating fully typed plugins (with custom properties), use the following pattern:

    import { loader } from 'fumadocs-core/source';
    import { docs } from 'fumadocs-mdx:collections/server';
    import { lucideIconsPlugin } from 'fumadocs-core/source/lucide-icons';
    
    export const source = loader(docs.toFumadocsSource(), {
      baseUrl: '/docs',
      plugins: ({ typedPlugin }) => [
        lucideIconsPlugin(),
        typedPlugin({
          // the plugin config
        }),
      ],
    });
  • 42ad84c: [Loader API] Refactor internal type parameters

    Internal types like ContentStorage, PageTreeTransformer now use a single Config extends SourceConfig generic parameter.

    It makes extending their parameters easier, this should not affect normal usages.

Patch Changes

  • 2e01720: [Loader API] Support calling loader().getPage(slugs) with URI encoded slugs

[email protected]

21 Nov 13:02
cbf7aaf

Choose a tag to compare

[email protected]

20 Nov 10:52
019afe6

Choose a tag to compare

Patch Changes

[email protected]

20 Nov 10:51
019afe6

Choose a tag to compare

Patch Changes

[email protected]

20 Nov 10:51
019afe6

Choose a tag to compare

Patch Changes

[email protected]

20 Nov 10:51
019afe6

Choose a tag to compare

Patch Changes

  • fe380da: feat(waku): WakuLink component to use unstable_prefetchOnEnter for prefetch
  • ade44d0: feat: enhance framework providers to accept custom Link components