mirror of
https://github.com/vuejs/vue-cli.git
synced 2026-01-16 20:30:19 -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)
|
|
}
|