gatsby-remark-static-images
v1.2.1
Published
Copy images in markdown without processing them.
Downloads
1,360
Maintainers
Readme
gatsby-remark-static-images
Copy images in markdown without processing them. Can be used in combination with gatsby-remark-images
to copy SVG and GIF files. Make sure to place this plugin after gatsby-remark-images
.
Getting started
yarn add --dev gatsby-remark-static-images
Usage
// gatsby-config.js
plugins: [
{
resolve: 'gatsby-transformer-remark',
options: {
plugins: [
'gatsby-remark-static-images'
]
}
}
]
Options
imageName
This option lets you specify the output name for the image. It should be a function that takes a File
node and returns the name of the image as a string.
Defaults to: (node) => ${node.name}-${node.internal.contentDigest}.${node.extension}
.
Example
{
resolve: 'gatsby-remark-static-images',
options: {
imageName: (node) => `${node.name}.${node.extension}`
}
}