Skip to content

Commit

Permalink
feat: init docs
Browse files Browse the repository at this point in the history
  • Loading branch information
FranciZhong committed Oct 16, 2024
1 parent fc3f88e commit 101d9e5
Show file tree
Hide file tree
Showing 30 changed files with 3,391 additions and 224 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

Welcome to [Chatemo](http://www.chatemo.chat/), the cutting-edge team communication app that integrates Large Language Models (LLMs) to provide real-time problem-solving capabilities. With Chatemo, there's no need to switch contexts to ask questions—various models. Instead, agents with tailored prompts are accessible directly within the conversation window. Simply input your preferred providers' API keys to get started.

[Quick Start](./docs/quick-start.md).
[Quick Start](https://www.chatemo.chat/docs/quick-start).

## 🌟 Core Features

Expand Down
11 changes: 9 additions & 2 deletions next.config.mjs
Original file line number Diff line number Diff line change
@@ -1,4 +1,10 @@
/** @type {import('next').NextConfig} */
import nextra from 'nextra';

const withNextra = nextra({
theme: 'nextra-theme-docs',
themeConfig: './theme.config.tsx',
});

const nextConfig = {
images: {
remotePatterns: [
Expand All @@ -10,6 +16,7 @@ const nextConfig = {
},
],
},
pageExtensions: ['ts', 'tsx', 'md', 'mdx'],
};

export default nextConfig;
export default withNextra(nextConfig);
Loading

0 comments on commit 101d9e5

Please sign in to comment.