Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
43 changes: 6 additions & 37 deletions apps/web/.source/index.ts
Original file line number Diff line number Diff line change
@@ -1,38 +1,7 @@
// @ts-nocheck -- skip type checking
import { _runtime } from 'fumadocs-mdx';
import * as docs_0 from '../content/docs/faq.mdx?collection=docs&hash=1755417541265';
import * as docs_1 from '../content/docs/features.mdx?collection=docs&hash=1755417541265';
import * as docs_2 from '../content/docs/index.mdx?collection=docs&hash=1755417541265';
import * as _source from '../source.config';
export const docs = _runtime.docs<typeof _source.docs>([{
info: {
'path': 'faq.mdx',
'absolutePath':
'/Users/vinh.nguyenxuan/Developer/learn-by-doing/vtchat/apps/web/content/docs/faq.mdx',
},
data: docs_0,
}, {
info: {
'path': 'features.mdx',
'absolutePath':
'/Users/vinh.nguyenxuan/Developer/learn-by-doing/vtchat/apps/web/content/docs/features.mdx',
},
data: docs_1,
}, {
info: {
'path': 'index.mdx',
'absolutePath':
'/Users/vinh.nguyenxuan/Developer/learn-by-doing/vtchat/apps/web/content/docs/index.mdx',
},
data: docs_2,
}], [{
'info': {
'path': 'meta.json',
'absolutePath':
'/Users/vinh.nguyenxuan/Developer/learn-by-doing/vtchat/apps/web/content/docs/meta.json',
},
'data': {
'title': 'Documentation',
'description': 'Learn how to use our AI chat platform effectively',
},
}]);
import * as docs_2 from "../content/docs/index.mdx?collection=docs&hash=1755446697168"
import * as docs_1 from "../content/docs/features.mdx?collection=docs&hash=1755446697168"
import * as docs_0 from "../content/docs/faq.mdx?collection=docs&hash=1755446697168"
import { _runtime } from "fumadocs-mdx"
import * as _source from "../source.config"
export const docs = _runtime.docs<typeof _source.docs>([{ info: {"path":"faq.mdx","absolutePath":"/workspace/repo-282c5a60-45c7-4d94-bbca-4041f081a67e/apps/web/content/docs/faq.mdx"}, data: docs_0 }, { info: {"path":"features.mdx","absolutePath":"/workspace/repo-282c5a60-45c7-4d94-bbca-4041f081a67e/apps/web/content/docs/features.mdx"}, data: docs_1 }, { info: {"path":"index.mdx","absolutePath":"/workspace/repo-282c5a60-45c7-4d94-bbca-4041f081a67e/apps/web/content/docs/index.mdx"}, data: docs_2 }], [{"info":{"path":"meta.json","absolutePath":"/workspace/repo-282c5a60-45c7-4d94-bbca-4041f081a67e/apps/web/content/docs/meta.json"},"data":{"title":"Documentation","description":"Learn how to use our AI chat platform effectively"}}])
8 changes: 5 additions & 3 deletions apps/web/.source/source.config.mjs
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
// source.config.ts
import { defineDocs } from 'fumadocs-mdx/config';
import { defineDocs } from "fumadocs-mdx/config";
var docs = defineDocs({
dir: 'content/docs',
dir: "content/docs"
});
export { docs };
export {
docs
};