From 63a3e7c78121a7eabb3823cdf65f832466d5e4ee Mon Sep 17 00:00:00 2001 From: moonrailgun Date: Sat, 27 Jan 2024 15:59:46 +0800 Subject: [PATCH] docs: fix README/website style problem --- README.md | 2 +- README.zh.md | 2 +- website/docusaurus.config.js | 3 +-- website/postcss.config.js | 6 ++++++ 4 files changed, 9 insertions(+), 4 deletions(-) create mode 100644 website/postcss.config.js diff --git a/README.md b/README.md index 8fd2e2d..e689998 100644 --- a/README.md +++ b/README.md @@ -1,6 +1,6 @@ # Tianji - + **Insight into everything** diff --git a/README.zh.md b/README.zh.md index 1e4a483..6c3b18c 100644 --- a/README.zh.md +++ b/README.zh.md @@ -1,6 +1,6 @@ # 天机 Tianji - + **洞察一切** diff --git a/website/docusaurus.config.js b/website/docusaurus.config.js index 3335257..2a0d3c5 100644 --- a/website/docusaurus.config.js +++ b/website/docusaurus.config.js @@ -7,8 +7,7 @@ const darkCodeTheme = require('prism-react-renderer/themes/dracula'); /** @type {import('@docusaurus/types').Config} */ const config = { title: 'Tianji', - tagline: - 'All-in-One Insight Hub', + tagline: 'All-in-One Insight Hub', favicon: 'img/favicon.ico', // Set the production url of your site here diff --git a/website/postcss.config.js b/website/postcss.config.js new file mode 100644 index 0000000..12a703d --- /dev/null +++ b/website/postcss.config.js @@ -0,0 +1,6 @@ +module.exports = { + plugins: { + tailwindcss: {}, + autoprefixer: {}, + }, +};