gpt4 book ai didi

vue.js - 错误 vue.config.js 中的无效选项 : "build" is not allowed. "dev"是不允许的

转载 作者:搜寻专家 更新时间:2023-10-30 22:13:21 28 4
gpt4 key购买 nike

我有一个现有的 vue-cli 2 应用程序,我正在尝试升级到 vue-cli-3。添加我独特的依赖项后,我将 src/ 直接放入新创建的 vue-cli-3 应用程序并启动。 哇哦!

既然我们使用了 vue.config.js,我该如何管理 [PROD|DEV|TEST].env.js

我收到以下错误,因为我第一次尝试创建 vue.config.js 只是简单地将 config/index.js 重命名为 /vue .config.js 并保留现有的 /config/[PROD|DEV|TEST].env.js 但我收到以下错误:

ERROR  Invalid options in vue.config.js: "build" is not allowed. "dev" 
is not allowed error Command failed with exit code 1.

我不明白现在环境是如何管理的。

感谢您的宝贵时间!

最佳答案

也许您应该改用 devServer。对于 build,我猜现在有另一个名字了。

例如:

module.exports = {
devServer: {
// your settings
}
}

例如:

module.exports = {
devServer: {
proxy: {
'/api': {
target: '<url>',
ws: true,
changeOrigin: true
},
'/foo': {
target: '<other_url>'
}
}
}
}

引用:vue-cli

关于vue.js - 错误 vue.config.js 中的无效选项 : "build" is not allowed. "dev"是不允许的,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/49806869/

28 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com