NuclearDispersionSystem/ant-design-vue-jeecg/node_modules/@vue/cli-service/lib/util/getAssetPath.js

8 lines
186 B
JavaScript
Raw Normal View History

2023-09-14 14:47:11 +08:00
const path = require('path')
module.exports = function getAssetPath (options, filePath) {
return options.assetsDir
? path.posix.join(options.assetsDir, filePath)
: filePath
}