Gatsby makes use of various plugins for building static sites. Here we will install gatsby-source-filesystem
and gatsby-transformer-remark
to work with locally stored Markdown files.
I found that the gatsby commands needed to be ran separately: npm install --save gatsby-source-filesystem@next npm install --save gatsby-transformer-remark@next
When I tried to run as npm install --save gatsby-source-filesystem@next gatsby-transformer-remark@next it threw a 404 on the last source
I found it hard to focus on the code text with those editor crosshairs
Hi Rion, I've removed this from my vimrc so they won't show up in future videos.
I think @next isn't needed anymore.
With @next: "gatsby-source-filesystem": "^2.0.1-rc.6", "gatsby-transformer-remark": "^2.1.1-rc.5",
Without @next: "gatsby-source-filesystem": "^2.0.12", "gatsby-transformer-remark": "^2.1.15",
gatsby-config.js
is now created automatically when the project folder is initialized.