forked from ard/ruoyi-api

Administrator
2023-08-11 3975da343b27ac03df285ecbb1093579d929e4b9
1
2
3
4
5
6
7
const path = require('path')
 
module.exports = function getAssetPath (options, filePath) {
  return options.assetsDir
    ? path.posix.join(options.assetsDir, filePath)
    : filePath
}