mirror of
https://github.com/rjNemo/lekol-plus
synced 2026-06-06 05:36:39 +00:00
50 lines
1.9 KiB
JavaScript
50 lines
1.9 KiB
JavaScript
module.exports = {
|
|
siteMetadata: {
|
|
title: `Lékol PLUS`,
|
|
subtitle: ``,
|
|
description: `Institut d'enseignement du primaire au lycée en Guadeloupe`,
|
|
author: `@lekolplus`,
|
|
// siteUrl: "",
|
|
},
|
|
plugins: [
|
|
`gatsby-plugin-react-helmet`,
|
|
{
|
|
resolve: `gatsby-source-filesystem`,
|
|
options: {
|
|
name: `images`,
|
|
path: `${__dirname}/src/images`,
|
|
},
|
|
},
|
|
`gatsby-transformer-sharp`,
|
|
`gatsby-plugin-sharp`,
|
|
{
|
|
resolve: `gatsby-plugin-manifest`,
|
|
options: {
|
|
name: `gatsby-starter-default`,
|
|
short_name: `starter`,
|
|
start_url: `/`,
|
|
background_color: `#663399`,
|
|
theme_color: `#663399`,
|
|
display: `minimal-ui`,
|
|
icon: `src/images/gatsby-icon.png`, // This path is relative to the root of the site.
|
|
},
|
|
},
|
|
{
|
|
resolve: `gatsby-plugin-netlify`,
|
|
options: {
|
|
headers: {
|
|
"/*": ["Strict-Transport-Security: max-age=63072000"],
|
|
}, // option to add more headers. `Link` headers are transformed by the below criteria
|
|
allPageHeaders: [], // option to add headers for all pages. `Link` headers are transformed by the below criteria
|
|
mergeSecurityHeaders: true, // boolean to turn off the default security headers
|
|
mergeLinkHeaders: true, // boolean to turn off the default gatsby js headers
|
|
mergeCachingHeaders: true, // boolean to turn off the default caching headers
|
|
transformHeaders: (headers, path) => headers, // optional transform for manipulating headers under each path (e.g.sorting), etc.
|
|
generateMatchPathRewrites: true, // boolean to turn off automatic creation of redirect rules for client only paths
|
|
},
|
|
},
|
|
// this (optional) plugin enables Progressive Web App + Offline functionality
|
|
// To learn more, visit: https://gatsby.dev/offline
|
|
// `gatsby-plugin-offline`,
|
|
],
|
|
}
|