Skip to content

Latest commit

 

History

History
25 lines (22 loc) · 537 Bytes

README.md

File metadata and controls

25 lines (22 loc) · 537 Bytes

gatsby-source-personio

Source plugin for pulling data into Gatsby from Personio.

How to use

// In your gatsby-config.js
module.exports = {
  plugins: [
    {
      resolve: "gatsby-source-personio",
      options: {
        // Your Personio domain name.
        domainName: "acme",
        // The language to fetch the jobs in.
        language: "de",
        // Remove styling from job description.
        removeStyling: true
      },
    },
  ],
}