From 83d444621d19da77d56ef48ec5f72a41512ca605 Mon Sep 17 00:00:00 2001 From: Hannes Elvemyr Date: Mon, 7 Oct 2019 16:09:16 +0200 Subject: [PATCH] Updates redame with additionalFiles option --- README.md | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) diff --git a/README.md b/README.md index b3cecad..37c793a 100644 --- a/README.md +++ b/README.md @@ -115,3 +115,23 @@ Stops Webpack from generating the .js.map files ]; } ``` + +### additionalFiles + +Default: [] + +Additional files to move to the asset directory. + +```javascript +// Your gatsby-config.js +{ + plugins: [ + { + resolve: "gatsby-plugin-asset-path", + options: { + additionalFiles: ['example.txt'], + }, + }, + ]; +} +```