-
Notifications
You must be signed in to change notification settings - Fork 102
/
Copy pathgatsby-config.js
97 lines (97 loc) · 2.48 KB
/
gatsby-config.js
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
module.exports = {
siteMetadata: {
siteUrl: "https://shahabyazdi.github.io/",
googleVerification: "eN9hWwtvlYdXL_37ZU2ML8AUY8685Fw3O98T5vidr-4",
en: {
title: "React Multi Date Picker",
description:
"a simple React datepicker component for working with gregorian, persian, arabic and indian calendars with the ability to select the date in single, multiple and range modes.",
keywords: [
"react",
"datepicker",
"rangepicker",
"timepicker",
"calendar",
"multi",
"date",
"picker",
"date picker",
"range picker",
"time picker",
"multiple",
"datetime picker",
"date time picker",
"time",
"gregorian",
"persian",
"jalali",
"hijri",
"arabic",
"indian",
"farsi",
"hindi",
"analog",
"analog time picker",
"component",
],
type: "website",
},
fa: {
title: "دیت پیکر چند منظوره ری اکت",
description:
"دیت پیکر ری اکت برای کار با تقویم های میلادی ، فارسی ، عربی و هندی با قابلیت انتخاب تاریخ در حالت های تکی ، چندگانه و دامنه.",
keywords: [
"ری اکت",
"دیت",
"پیکر",
"دیت پیکر",
"تایم پیکر",
"چند منظوره",
"رنج پیکر",
"انتخابگر تاریخ",
"انتخابگر زمان",
"انتخابگر ساعت",
"انتخابگر چندگانه",
"انتخابگر دامنه",
"هجری شمسی",
"تاریخ",
"میلادی",
"هجری",
"شمسی",
"جلالی",
"قمری",
"هندی",
"فارسی",
"تقویم",
"کامپوننت",
],
type: "وب سایت",
},
},
pathPrefix: "/react-multi-date-picker",
plugins: [
"gatsby-plugin-react-helmet",
"gatsby-plugin-sitemap",
{
resolve: "gatsby-plugin-manifest",
options: {
icon: "src/images/icon.png",
},
},
{
resolve: "gatsby-plugin-react-svg",
options: {
rule: {
include: /assets/,
},
},
},
{
resolve: "gatsby-source-filesystem",
options: {
name: "pages",
path: `${__dirname}/src/pages/`,
},
},
],
};