1.0.1 • Published 5 years ago

gatsby-plugin-static-folders v1.0.1

Weekly downloads
424
License
MIT
Repository
-
Last release
5 years ago

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.