Files
wechatpay-enterprise-web/node_modules/@vue/cli-service/lib/util/getAssetPath.js
jefferyzhao b9bdc8598b first commit
2025-07-31 17:44:12 +08:00

8 lines
186 B
JavaScript

const path = require('path')
module.exports = function getAssetPath (options, filePath) {
return options.assetsDir
? path.posix.join(options.assetsDir, filePath)
: filePath
}