加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
gatsby-config.js 1.38 KB
一键复制 编辑 原始数据 按行查看 历史
哈陆lu 提交于 2020-04-29 22:49 . 时间线框架
module.exports = {
siteMetadata: {
title: `临高启明公开图书馆`,
description: `临高启明公开图书馆`,
author: `halulu`,
siteUrl: `https://lgqm.halu.lu`,
},
plugins: [
`gatsby-plugin-sass`,
`gatsby-plugin-react-helmet`,
{
resolve: `gatsby-source-filesystem`,
options: {
name: `images`,
path: `${__dirname}/src/images`,
},
},
{
resolve: `gatsby-source-filesystem`,
options: {
name: `content`,
path: `${__dirname}/content`,
},
},
{
resolve: `gatsby-source-filesystem`,
options: {
name: `data`,
path: `${__dirname}/data`,
},
},
{
resolve: `gatsby-transformer-remark`,
options: {},
},
`gatsby-transformer-sharp`,
`gatsby-plugin-sharp`,
{
resolve: `gatsby-plugin-manifest`,
options: {
name: `临高启明`,
short_name: `lgqm`,
start_url: `/`,
background_color: `#ffe500`,
theme_color: `#ffe500`,
display: `minimal-ui`,
icon: `src/images/icon.png`,
},
},
{
resolve: `gatsby-plugin-google-analytics`,
options: {
trackingId: `UA-91028451-14`,
},
},
`gatsby-plugin-sitemap`,
{
resolve: `gatsby-plugin-offline`,
options: {
precachePages: [`/catalog/`],
},
},
],
}
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化