Files
link-free/gatsby-config.js

17 lines
294 B
JavaScript
Raw Normal View History

const fs = require('fs')
const yaml = require('js-yaml')
const metadata = yaml.safeLoad(
fs.readFileSync('./content/metadata.yaml', 'utf8')
)
2020-12-11 18:47:46 -03:00
module.exports = {
plugins: [
{
resolve: `@marscollective/gatsby-theme-link-free`,
options: {
metadata
}
}
]
}