-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsite.config.example.ts
More file actions
110 lines (103 loc) · 2.23 KB
/
site.config.example.ts
File metadata and controls
110 lines (103 loc) · 2.23 KB
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
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
import type { SiteConfig } from '$lib/config/types';
/**
* Astro Feature Map Configuration Template
*
* INSTRUCTIONS:
* 1. Copy this file to `src/lib/site-config.ts`
* 2. Edit the values below to match your product branding
* 3. The site will automatically use these settings during the next build
*/
export const siteConfig: Partial<SiteConfig> = {
/**
* BRANDING
* appName and appDescription support either a simple string or a localized object.
*/
appName: {
default: 'Astro Feature Map',
ja: 'Astro機能マップ'
},
appDescription: {
default: 'Submit and vote on proposals for new features',
ja: '新機能の提案を投稿・投票しましょう'
},
/**
* HERO TITLE (Optional)
* The large heading shown in the hero section.
* If omitted, appName will be used.
*/
heroTitle: {
default: 'Proposal Board',
ja: '提案ボード'
},
/**
* LOGO TEXT (Optional)
* The text displayed next to the logo in the header.
* If omitted, appName will be used.
*/
logoText: 'Astro Feature Map',
/**
* APP ICON
* Path to your logo. Relative to the /static folder.
* Recommended size: 512x512px (PNG)
*/
appIcon: '/icon.png',
/**
* CATEGORY COLUMNS
* Defines the columns shown in the "Map" view.
*/
categories: [
{
id: 'onboarding',
label: {
default: 'Onboarding',
ja: '導入'
},
description: {
default: 'Initial setup and orientation',
ja: '初期設定とオリエンテーション'
},
color: '#3B82F6' // Blue
},
{
id: 'activation',
label: {
default: 'Activation',
ja: '活用'
},
description: {
default: 'Core feature usage and adoption',
ja: '主要機能の利用と定着'
},
color: '#8B5CF6' // Violet
},
{
id: 'engagement',
label: {
default: 'Engagement',
ja: '継続'
},
description: {
default: 'Advanced features and long-term value',
ja: '高度な機能と長期的な価値'
},
color: '#10B981' // Emerald
}
],
/**
* FEATURE TOGGLES
*/
features: {
allowPublicProposals: true,
showVoteCounts: true,
defaultViewMode: 'map',
allowMarkdown: true
},
/**
* OBSERVABILITY (Optional)
*/
sentry: {
dsn: '',
environment: 'production',
tracesSampleRate: 1.0
}
};