1.0.0 • Published 7 years ago

@jacobmischka/gatsby-plugin-copy-files v1.0.0

Weekly downloads
-
License
MIT
Repository
github
Last release
7 years ago

Specify absolute source path and relative destination path using plugin options.

{
	resolve: '@jacobmischka/gatsby-plugin-copy-files',
	options: {
		source: `${__dirname}/src/public`,
		destination: ''
	}
},
{
	resolve: '@jacobmischka/gatsby-plugin-copy-files',
	options: {
		source: `${__dirname}/src/images`,
		destination: '/images'
	}
}

Must be used with gatsby-source-filesystem.