-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
gatsby-config.ts
96 lines (94 loc) · 2.63 KB
/
gatsby-config.ts
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
import type { GatsbyConfig } from 'gatsby'
const config: GatsbyConfig = {
siteMetadata: {
title: 'SchoolCamping',
siteUrl: 'https://camping.gbsw.hs.kr'
},
plugins: [
{
resolve: 'gatsby-plugin-s3',
options: {
bucketName: 'schoolcamping-frontend',
protocol: 'https',
hostname: 'camping.gbsw.hs.kr'
}
},
'gatsby-plugin-postcss',
'gatsby-plugin-pnpm',
'gatsby-plugin-image',
'gatsby-plugin-sharp',
'gatsby-transformer-sharp',
{
resolve: 'gatsby-plugin-manifest',
options: {
name: '스쿨캠핑 - 스쿨캠핑 예약을 쉽고 빠르게',
short_name: '스쿨캠핑',
start_url: '/',
background_color: '#212121',
theme_color: '#212121',
display: 'standalone',
icon: 'src/images/icon.png',
scope: '/',
orientation: 'portrait',
description: '경북소프트웨어고 스쿨캠핑 예약을 위한 웹 애플리케이션입니다.',
lang: 'ko-KR',
screenshots: [
{
src: 'screenshots/screenshot1.webp',
sizes: '1080x2171',
type: 'image/webp',
platform: 'narrow',
label: '홈 화면'
},
{
src: 'screenshots/screenshot2.webp',
sizes: '1080x2171',
type: 'image/webp',
platform: 'narrow',
label: '스쿨캠핑 예약 화면'
},
{
src: 'screenshots/screenshot3.webp',
sizes: '1080x2171',
type: 'image/webp',
platform: 'narrow',
label: '예약 정보 목록 및 조회 화면'
},
{
src: 'screenshots/screenshot4.webp',
sizes: '1080x2171',
type: 'image/webp',
platform: 'narrow',
label: '관리자 화면'
}
],
shortcuts: [
{
name: '메인페이지',
url: '/',
description: '스쿨캠핑 예약 현황을 볼 수 있는 메인페이지'
},
{
name: '예약 페이지',
url: '/reserve',
description: '스쿨캠핑을 예약할 수 있는 예약 페이지'
},
{
name: '관리자 페이지',
url: '/admin',
description: '스쿨캠핑 예약을 관리할 수 있는 관리자 페이지'
}
],
categories: ['utilities']
}
},
{
resolve: 'gatsby-plugin-offline',
options: {
precachePages: ['/*']
}
},
'gatsby-plugin-react-helmet'
]
}
export default config