Hello, I would like webgen to copy all files that''s not handled to the output directory. Is there an easy way to do this? - Zoxc
> I would like webgen to copy all files that''s not handled to the output > directory. Is there an easy way to do this?This is not possible. You will have to tell the CopyHandler the files or the needed file patterns that should be copied. For example, you could add the following to your config.yaml to copy additionally copy all .pdf files: patterns: Copy: add: [**/*.pdf] -- Thomas