-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
astro.config.mjs
84 lines (81 loc) · 2.16 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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
import react from '@astrojs/react';
import starlight from '@astrojs/starlight';
import tailwind from '@astrojs/tailwind';
import vercel from '@astrojs/vercel/serverless';
import { defineConfig } from 'astro/config';
// https://vercel.com/docs/projects/environment-variables/system-environment-variables#system-environment-variables
const VERCEL_PREVIEW_SITE = process.env.VERCEL_ENV !== 'production'
&& process.env.VERCEL_URL
&& `https://${process.env.VERCEL_URL}`;
const site = VERCEL_PREVIEW_SITE || 'https://wisely.vercel.app/';
// https://astro.build/config
export default defineConfig({
site,
integrations: [
starlight({
title: 'Wisely',
description: 'Obfuscating text or phrases with random uncommon characters',
defaultLocale: 'root',
locales: {
root: {
label: 'English',
lang: 'en',
},
id: {
label: 'Bahasa Indonesia',
lang: 'id',
},
},
social: {
github: 'https://github.com/fityannugroho/wisely-web',
},
sidebar: [
{
label: 'Guides',
autogenerate: { directory: 'guides' },
translations: {
id: 'Panduan',
},
},
{
label: 'Manual',
autogenerate: { directory: 'manual' },
},
],
editLink: {
baseUrl: 'https://github.com/fityannugroho/wisely-web/edit/main/',
},
lastUpdated: true,
head: [
{
tag: 'meta',
attrs: {
name: 'keywords',
// eslint-disable-next-line max-len
content: 'wisely, npm, package, github, tools, obfuscator, obfuscate, text, phrase, random, uncommon, character, web, playground',
},
},
{
tag: 'meta',
attrs: {
property: 'og:image',
content: `${site}og.jpg`,
},
},
{
tag: 'meta',
attrs: {
property: 'twitter:image',
content: `${site}og.jpg`,
},
},
],
}),
react(),
tailwind({
applyBaseStyles: false,
}),
],
output: 'hybrid',
adapter: vercel(),
});