We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f1bdf73 commit ebcee9aCopy full SHA for ebcee9a
packages/@vue/cli-service/lib/commands/build/index.js
@@ -62,7 +62,7 @@ module.exports = (api, options) => {
62
// spawn sub-process of self for modern build
63
const { execa } = require('@vue/cli-shared-utils')
64
const cliBin = require('path').resolve(__dirname, '../../../bin/vue-cli-service.js')
65
- await execa(cliBin, ['build', ...rawArgs], {
+ await execa('node', [cliBin, 'build', ...rawArgs], {
66
stdio: 'inherit',
67
env: {
68
VUE_CLI_MODERN_BUILD: true
0 commit comments