-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathsite.config.mjs
171 lines (169 loc) · 3.03 KB
/
site.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
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
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
export const TAGS = [
{
title: "Webアクセシビリティとは",
slug: "introduction_to_web_accessibility",
},
{
title: "取り組む理由",
slug: "effort",
},
{
title: "海外の動き",
slug: "overseas_trends",
},
{
title: "障害当事者の利用状況や意見",
slug: "users_voice",
},
{
title: "WCAGやJISの読み方",
slug: "instruction_of_specs",
},
{
title: "啓発ツール",
slug: "awareness_tool",
},
{
title: "ガイドラインのチートシート",
slug: "cheet_sheet_of_guidelines",
},
{
title: "WAICガイドラインの解説",
slug: "waic_guidelines",
},
{
title: "インクルーシブデザイン",
slug: "inclusive_design",
},
{
title: "要件定義",
slug: "requirement_difinition",
},
{
title: "Webサイト上の支援機能",
slug: "assistance_by_website",
},
{
title: "情報設計・ライティング",
slug: "ia_writting",
},
{
title: "代替テキスト・alt",
slug: "alt",
},
{
title: "ビジュアルデザイン",
slug: "visual_design",
},
{
title: "フロント実装(HTML・CSS・JS・WAI-ARIA)",
slug: "frontend",
},
{
title: "SVG",
slug: "svg",
},
{
title: "アイコンフォント",
slug: "icon_font",
},
{
title: "PDF",
slug: "pdf",
},
{
title: "EPUB",
slug: "epub",
},
{
title: "動画",
slug: "video",
},
{
title: "支援技術(Assistive Technology)",
slug: "at",
},
{
title: "アクセシビリティサポーテッド",
slug: "as",
},
{
title: "失敗事例・改善事例",
slug: "case_study",
},
{
title: "ネイティブアプリ",
slug: "native_app",
},
{
title: "CMS",
slug: "cms",
},
{
title: "会社・団体の独自ガイドライン",
slug: "guidelines_in_company",
},
{
title: "チェックツール",
slug: "check_tool",
},
{
title: "Q&A",
slug: "q_and_a",
},
{
title: "公式仕様",
slug: "official_specs",
},
{
title: "おもしろ動画・音楽",
slug: "fun_art",
},
{
title: "ショーケース",
slug: "showcase",
},
{
title: "手動テスト",
slug: "manual_test",
},
{
title: "法令・条例",
slug: "laws_and_ordinance",
},
{
title: "ゲーム",
slug: "game",
},
{
title: "書籍",
slug: "book",
},
{
title: "デザインシステム",
slug: "design_system",
},
{
title: "構造化データ",
slug: "microdata",
},
{
title: "方針・試験結果",
slug: "policy_and_test_results",
},
{
title: "チェックリスト",
slug: "checklist",
},
{
title: "活動報告",
slug: "report",
},
];
export const ASSETS = "src/(assets/**/*|apple-touch-icon.png|favicon.ico)";
export const CONSTANTS = {
SITE_DESC: "Webアクセシビリティの参考資料まとめ",
SITE_NAME: "accrefs",
SITE_ORIGIN: "https://accrefs.jp",
tags: TAGS,
};