1 Star 0 Fork 0

chpinck / running_page

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
gatsby-config.js 1.86 KB
一键复制 编辑 原始数据 按行查看 历史
chenp 提交于 2021-05-18 23:03 . my run
module.exports = {
pathPrefix: '/run', // Change to `/running_page` when running on github pages
siteMetadata: {
title: 'Running page',
siteUrl: 'https://deep-tek.com/run/',
description: 'Personal site and blog',
},
plugins: [
'gatsby-transformer-json',
{
resolve: 'gatsby-source-filesystem',
options: {
path: './src/static/',
},
},
{
resolve: 'gatsby-source-filesystem',
options: {
path: './src/images/',
},
},
{
resolve: 'gatsby-alias-imports',
options: {
rootFolder: './',
},
},
'gatsby-plugin-react-helmet',
{
resolve: 'gatsby-transformer-remark',
options: {
plugins: [
'gatsby-remark-responsive-iframe',
'gatsby-remark-smartypants',
'gatsby-remark-widows',
'gatsby-remark-external-links',
{
resolve: 'gatsby-remark-autolink-headers',
options: {
className: 'header-link',
},
},
],
},
},
{
resolve: 'gatsby-plugin-sass',
options: {
precision: 8,
},
},
{
resolve: 'gatsby-plugin-react-svg',
options: {
rule: {
include: /assets/,
},
},
},
{
resolve: 'gatsby-plugin-manifest',
options: {
name: 'gatsby-starter-default',
short_name: 'starter',
start_url: '/',
background_color: '#e1e1e1',
theme_color: '#e1e1e1',
display: 'minimal-ui',
icon: 'src/images/favicon.ico', // This path is relative to the root of the site.
},
},
'gatsby-transformer-sharp',
'gatsby-plugin-sharp',
'gatsby-plugin-sitemap',
{
resolve: 'gatsby-plugin-robots-txt',
options: {
policy: [{ userAgent: '*', allow: '/' }],
},
},
],
};
1
https://gitee.com/chpinck/running_page.git
git@gitee.com:chpinck/running_page.git
chpinck
running_page
running_page
master

搜索帮助