mirror of
https://github.com/vuejs/vue-cli.git
synced 2026-01-23 23:59:02 -06:00
6 lines
132 B
JavaScript
6 lines
132 B
JavaScript
const path = require('path')
|
|
|
|
module.exports = function resolveLocal (...args) {
|
|
return path.join(__dirname, '../../', ...args)
|
|
}
|