Skip to content

Commit

Permalink
Merge branch 'master' into #18-about-page-mission-section
Browse files Browse the repository at this point in the history
  • Loading branch information
samgildea committed Mar 16, 2021
2 parents a15a8b5 + fa6eae0 commit 28422d1
Show file tree
Hide file tree
Showing 11 changed files with 1,390 additions and 25 deletions.
11 changes: 6 additions & 5 deletions gatsby-config.js
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,9 @@
module.exports = {
/* Your site config here */
plugins: [
`gatsby-plugin-sass`,
{
resolve: '@walltowall/gatsby-source-prismic-schemas',
resolve: "@walltowall/gatsby-source-prismic-schemas",
options: {
/**
* Provide an object of Prismic custom type JSON schemas to load into
Expand All @@ -22,22 +23,22 @@ module.exports = {
},
},
{
resolve: 'gatsby-source-prismic',
resolve: "gatsby-source-prismic",
options: {
// The name of your prismic.io repository. This is required.
// Example: 'gatsby-source-prismic-test-site' if your prismic.io address
// is 'gatsby-source-prismic-test-site.prismic.io'.
repositoryName: 'power-house',
repositoryName: "power-house",
schemas: {
// all the schemas here
test: require("./src/schemas/test.json"),
About: require("./src/schemas/About.json"),
Process: require("./src/schemas/Process.json"),

},
typePathsFilenamePrefix:
'prismic-typepaths---powerhouse-site',
}
},


],
}
Loading

0 comments on commit 28422d1

Please sign in to comment.