-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathrspress.config.ts
41 lines (40 loc) · 1.17 KB
/
rspress.config.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
import * as path from "path";
import { defineConfig } from "rspress/config";
export default defineConfig({
root: path.join(__dirname, "docs"),
title: "AHQ Store",
description: "An Open Sourced Store Application",
icon: "/favicon.png",
logo: {
light: "/favicon.png",
dark: "/favicon.png",
},
globalStyles: path.join(__dirname, "./globals.css"),
themeConfig: {
searchPlaceholderText: "Search anything!",
socialLinks: [
{ icon: "github", mode: "link", content: "https://github.com/ahqstore" },
{
icon: "discord",
mode: "link",
content: "https://discord.gg/sxgr5dh2fz",
},
{ icon: "X", mode: "link", content: "https://x.com/ahqsoftwares" },
{
icon: "github",
mode: "link",
content: "https://github.com/ahqsoftwares/tauri-ahq-store",
},
{
icon: "youtube",
mode: "link",
content: "https://www.youtube.com/channel/UC5G8xgHA-bKftjcnPzt-BFw",
},
],
footer: {
message:
"©️ AHQ Store | Licensed under MIT | A Project by AHQ Softwares Non Profit | ✉️ ahqsecret@gmail.com",
},
enableContentAnimation: false,
},
});