Initial commit from gatsby: (https://github.com/konstantinmuenster/gatsby-starter-portfolio-minimal-theme.git)
This commit is contained in:
29
gatsby-config.js
Normal file
29
gatsby-config.js
Normal file
@ -0,0 +1,29 @@
|
||||
module.exports = {
|
||||
plugins: [
|
||||
{
|
||||
resolve: "gatsby-theme-portfolio-minimal",
|
||||
options: {
|
||||
siteUrl: "https://gatsby-starter-portfolio-minimal-theme.netlify.app/", // Used for sitemap generation
|
||||
manifestSettings: {
|
||||
favicon: "./content/images/favicon.png", // Path is relative to the root
|
||||
siteName: "My Minimal Portfolio", // Used in manifest.json
|
||||
shortName: "Portfolio", // Used in manifest.json
|
||||
startUrl: "/", // Used in manifest.json
|
||||
backgroundColor: "#FFFFFF", // Used in manifest.json
|
||||
themeColor: "#000000", // Used in manifest.json
|
||||
display: "minimal-ui", // Used in manifest.json
|
||||
},
|
||||
contentDirectory: "./content",
|
||||
blogSettings: {
|
||||
path: "/blog", // Defines the slug for the blog listing page
|
||||
usePathPrefixForArticles: false, // Default true (i.e. path will be /blog/first-article)
|
||||
},
|
||||
// googleAnalytics: {
|
||||
// trackingId: "UA-XXXXXX-X",
|
||||
// anonymize: true, // Default true
|
||||
// environments: ["production", "development"] // Default ["production"]
|
||||
// }
|
||||
},
|
||||
},
|
||||
],
|
||||
};
|
Reference in New Issue
Block a user