Until now, my website (andrewsosa.dev) was just some Github project links, but now, with the power of gatsby-source-dev, we now have some blog links too.
Woo, blog links!
obligatory tutorial part
1. you install the plugin
npm i gatsby-source-dev
2. you add the config
module.exports = {
// ...
plugins: [
{
resolve: `gatsby-source-dev`,
options: {
// This is your username on Dev.to
username: `andrewsosa`,
},
},
// ...
],
};
Top comments (0)