fix.js 307 B

1234567891011121314
  1. var fs = require('fs')
  2. var path = require('path')
  3. var themes = path.resolve(__dirname, '../../themes/')
  4. var css = fs.readFileSync(path.resolve(themes, 'mini.css'), 'utf8')
  5. fs.writeFileSync(
  6. path.resolve(themes, 'mini.css'),
  7. css
  8. .replace('*,h5', 'body')
  9. .replace('*,html', 'body'),
  10. 'utf8'
  11. )