Files
DelLevin-Home a4a326401e 1
2026-03-10 22:06:32 +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
}