12345678910111213141516 |
- /**
- * React Static Boilerplate
- * https://github.com/koistya/react-static-boilerplate
- * Copyright (c) Konstantin Tarkus (@koistya) | MIT license
- */
- import copy from './lib/copy';
- /**
- * Copies static files such as robots.txt, favicon.ico to the
- * output (build) folder.
- */
- export default async () => {
- console.log('copy');
- await copy('static', 'build');
- };
|