ERROR Invalid options in vue.config.js: "baseUrl" is not allowed
程序员文章站
2022-07-14 23:42:53
...
vue项目
我的这个版本是 3.10.0
module.exports = {
baseUrl: process.env.NODE_ENV === 'production'
? './'
: '/'
}
这里面是一个坑
在vue-cli.3.3版本后 baseUrl被废除了,因此这边要写成 publicPath。
改成
module.exports = {
publicPath: process.env.NODE_ENV === 'production'
? './'
: '/'
}
就可以了,找了好久不过解决了。
上一篇: Nginx 配置问题 server directive is not allowed here in /etc/nginx/nginx.conf:69
下一篇: ERROR Invalid options in vue.config.js: "baseUrl" is not allowed
推荐阅读
-
Invalid options in vue.config.js: "publicPath" is not allowed
-
ERROR Invalid options in vue.config.js: "publicPath" is not allowed
-
Invalid options in vue.config.js: "baseUrl" is not allowed
-
ERROR Invalid options in vue.config.js: "baseUrl" is not allowed
-
ERROR Invalid options in vue.config.js: "baseUrl" is not allowed
-
Invalid options in vue.config.js: "publicPath" is not allowed