重构xuchang-screen,从umi->cra, 计划引入redux
Ви не можете вибрати більше 25 тем Теми мають розпочинатися з літери або цифри, можуть містити дефіси (-) і не повинні перевищувати 35 символів.
 
 
 
 

15 рядки
314 B

  1. 'use strict';
  2. // This is a custom Jest transformer turning style imports into empty objects.
  3. // http://facebook.github.io/jest/docs/en/webpack.html
  4. module.exports = {
  5. process() {
  6. return 'module.exports = {};';
  7. },
  8. getCacheKey() {
  9. // The output is always the same.
  10. return 'cssTransform';
  11. },
  12. };