Timers and other features for Heroes of the Storm
您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符
 
 
 
 
 

21 行
445 B

  1. 'use strict'
  2. const utils = require('./utils')
  3. const config = require('../config')
  4. const isProduction = process.env.NODE_ENV === 'production'
  5. module.exports = {
  6. loaders: utils.cssLoaders({
  7. sourceMap: isProduction
  8. ? config.build.productionSourceMap
  9. : config.dev.cssSourceMap,
  10. extract: isProduction
  11. }),
  12. transformToRequire: {
  13. video: ['src', 'poster'],
  14. source: 'src',
  15. img: 'src',
  16. image: 'xlink:href'
  17. }
  18. }