7d64d25b37f21ce2a50409d4771c12afd6cf24dc6df5f085c777f5e1bd781d3b7819963a676e49ed78a8715de7678adab67022ea285a096c60b946169cb2bc 186 B

1234567
  1. const path = require('path')
  2. module.exports = function getAssetPath (options, filePath) {
  3. return options.assetsDir
  4. ? path.posix.join(options.assetsDir, filePath)
  5. : filePath
  6. }