Timers and other features for Heroes of the Storm
Du kannst nicht mehr als 25 Themen auswählen Themen müssen entweder mit einem Buchstaben oder einer Ziffer beginnen. Sie können Bindestriche („-“) enthalten und bis zu 35 Zeichen lang sein.

vue-loader.conf.js 445 B

vor 4 Jahren
1234567891011121314151617181920
  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. }