-
Notifications
You must be signed in to change notification settings - Fork 0
/
gatsby-config.js
53 lines (53 loc) · 1.35 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
/**
* @type {import('gatsby').GatsbyConfig}
*/
module.exports = {
siteMetadata: {
title: `Epsan Crafts`,
author: `OpenArchitex`,
description: `Epsan Crafts - Handmade Crafts`,
siteUrl: `https://www.epsancrafts.lk`,
},
plugins: [
"gatsby-plugin-theme-ui",
"gatsby-plugin-image",
"gatsby-plugin-sharp",
"gatsby-transformer-sharp",
{
resolve: "gatsby-source-filesystem",
options: {
name: "portfolio-images",
path: `${__dirname}/src/images/portfolio-images`,
},
},
{
resolve: `gatsby-plugin-manifest`,
options: {
name: "Epsan Crafts",
short_name: "Epsan Crafts",
start_url: "/",
icon: "src/images/favicon.svg", // This path is relative to the root of the site.
},
},
{
resolve: `gatsby-omni-font-loader`,
options: {
enableListener: true,
preconnect: [
`https://fonts.googleapis.com`,
`https://fonts.gstatic.com`,
],
web: [
{
name: `Roboto`,
file: `https://fonts.googleapis.com/css2?family=Roboto:wght@100;300;500&display=swap`,
},
{
name: `Dancing Script`,
file: `https://fonts.googleapis.com/css2?family=Dancing+Script:wght@400;700&display=swap`,
},
],
},
},
],
};