mirror of
https://github.com/vuejs/vue-cli.git
synced 2026-02-09 16:38:28 -06:00
6 lines
116 B
JavaScript
6 lines
116 B
JavaScript
const path = require('path')
|
|
|
|
exports.ownDir = function (...args) {
|
|
return path.join(__dirname, '../', ...args)
|
|
}
|