Files
animethemes-web/plugins/gatsby-source-animethemes-db/gatsby-node.js
T
Manuel S 14d06fc190 feat: Added database source plugin (#40)
* Rewrote API source plugin to prepare for incremental builds.
* Changed the font to Nunito.
* Improved display of artist names.
* Fixed cover images not taking up the available space leading to too much whitespace.
* Fixed several margins.
2021-03-29 02:37:16 +02:00

8 lines
291 B
JavaScript

exports.onPreInit = ({ reporter }) => reporter.info("Loaded gatsby-source-animethemes-db");
exports.createSchemaCustomization = require("./src/create-schema-customization");
exports.sourceNodes = require("./src/source-nodes");
exports.createResolvers = require("./src/create-resolvers");