-
Notifications
You must be signed in to change notification settings - Fork 0
/
astro.config.mjs
31 lines (30 loc) · 1.12 KB
/
astro.config.mjs
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
import { defineConfig } from "astro/config";
import UnoCSS from "unocss/astro";
export default defineConfig({
integrations: [UnoCSS()],
redirects: {
"/x": { destination: "https://x.com/theblapse", status: 302 },
"/twitter": { destination: "https://twitter.com/theblapse", status: 302 },
"/spotify": {
destination: "https://open.spotify.com/user/k858xiwlv3p7cppmv105ug12y",
status: 302,
},
"/github": { destination: "https://github.com/theblapse", status: 302 },
"/gh": { destination: "https://github.com/theblapse", status: 302 },
"/lastfm": { destination: "https://last.fm/user/theblapse", status: 302 },
"/gr": {
destination: "https://www.goodreads.com/user/show/158655949-badal",
status: 302,
},
"/goodreads": {
destination: "https://www.goodreads.com/user/show/158655949-badal",
status: 302,
},
"/discord": {
destination: "https://discord.com/users/474929574304677898",
status: 302,
},
"/telegram": { destination: "https://t.me/theblapse", status: 302 },
"/tg": { destination: "https://t.me/theblapse", status: 302 },
},
});