gatsby-plugin-static-folders
v1.0.1
Published
Lets you add additional static folders
Downloads
1,474
Readme
gatsby-plugin-static-folders
Lets you add additional static folders to your site, to better organize it.
gatsby-config.js
{
plugins: [
{
resolve: 'gatsby-plugin-static-folders',
options: {
folders: [
'./images',
'./downloads',
]
}
}
]
}This will merge the two folders images and downloads into the output public folder.
