getAssetPath.js 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. }