const fs = require('fs');
const path = require('path');

fs.copyFileSync(
  path.resolve(__dirname, 'dist/index.html'),
  path.resolve(__dirname, '../torch_tb_profiler/static/index.html')
);