NuclearDispersionSystem/ant-design-vue-jeecg/node_modules/@vue/cli-service/lib/util/getAssetPath.js
2023-09-14 14:47:11 +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
}