Skip to content

Commit 05eb30b

Browse files
committed
replace SignalWire LLMS plugin with docusaurus-plugin-llms and enhance configuration options for improved content organization and LLM consumption
1 parent ca33dc3 commit 05eb30b

File tree

3 files changed

+39
-307
lines changed

3 files changed

+39
-307
lines changed

docusaurus.config.ts

Lines changed: 18 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -246,15 +246,25 @@ const config: Config = {
246246
plugins: [
247247
require.resolve("./webpack.config.js"),
248248
[
249-
"@signalwire/docusaurus-plugin-llms-txt",
249+
"docusaurus-plugin-llms",
250250
{
251-
siteTitle: "Flare Network Developer Hub",
252-
siteDescription: "Flare Network Developer Hub Documentation",
253-
depth: 3,
254-
content: {
255-
includePages: true,
256-
enableLlmsFullTxt: true,
257-
},
251+
ignoreFiles: [
252+
"**/node_modules/**",
253+
"**/.git/**",
254+
"**/*.txt",
255+
],
256+
// Include order for better organization
257+
includeOrder: [
258+
"network",
259+
"ftso",
260+
"fdc",
261+
"fassets",
262+
"run-node",
263+
"support",
264+
],
265+
// Content cleaning options for better LLM consumption
266+
excludeImports: true,
267+
removeDuplicateHeadings: true,
258268
},
259269
],
260270
],

0 commit comments

Comments
 (0)