Create files without any processing

Hi! I’m trying to create netlify’s _redirects file.

It’s a file that should be placed at the root and named _redirects.

By default, if I place that file on the root of my project, jekyll won’t create the file in the _site folder.

How can I create that file and make sure that jekyll creates it in the _site folder, and keep the same file name, extension and content? Basically, I want that file to be created in the _site folder but without any processing at all

in the config you can specify files to include so I think: include: _redirects would work. Jekyl by default is ignoring it cause of the underscore I think.

1 Like

You’re right. It worked. Thanks.
The only thing is that include expects an array.
Thanks a lot for your help