-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgatsby-config.js
51 lines (51 loc) · 1.37 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
module.exports = {
siteMetadata: {
title: '2023 金融資安研習營',
description:
'2023 金融資安研習營 Financial Information & Security Workshop 為協助大學財金、資工、資管及資訊類相關背景學生對於金融產業的認識及瞭解資安的實務運用,藉由整合產業的力量,舉辦此研習營以協助學生能夠於在校期間認識金融資安的工作,同時建立產業與學界共同合作的機制。',
siteUrl: 'https://fisw.ccisa.org.tw',
},
plugins: [
'gatsby-plugin-emotion',
'gatsby-plugin-image',
'gatsby-plugin-mdx',
'gatsby-plugin-sharp',
'gatsby-transformer-sharp',
'gatsby-transformer-json',
{
resolve: 'gatsby-source-filesystem',
options: {
name: 'images',
path: './src/images/',
},
__key: 'images',
},
{
resolve: 'gatsby-source-filesystem',
options: {
name: 'pages',
path: './src/pages/',
},
__key: 'pages',
},
{
resolve: `gatsby-source-filesystem`,
options: {
path: `./src/data/`,
},
},
{
resolve: 'gatsby-source-filesystem',
options: {
name: `news`,
path: `${__dirname}/news`,
},
},
{
resolve: 'gatsby-plugin-react-svg',
options: {
include: `${__dirname}/src/assets/`,
},
},
],
};