Files
vue-google-maps-community-fork/service/utils/paths.js
2021-02-13 17:30:46 +01:00

10 lines
232 B
JavaScript

'use strict'
const path = require('path')
// gen static file path
exports.getAssetPath = (...args) => path.posix.join('static', ...args)
// gen absolute path
exports.resolve = (...args) => path.posix.join(process.cwd(), ...args)