【发布时间】:2021-06-14 16:38:57
【问题描述】:
我正在尝试将 asp.net core (kesterl) 中的环境变量设置传递给 vuejs 我的启动设置就像
{
"iisSettings": {
"windowsAuthentication": false,
"anonymousAuthentication": true,
"iisExpress": {
"applicationUrl": "https://localhost:44323/",
"sslPort": 44323
}
},
"$schema": "http://json.schemastore.org/launchsettings.json",
"profiles": {
"IIS Express": {
"commandName": "IISExpress",
"launchBrowser": true,
"environmentVariables": {
"ASPNETCORE_ENVIRONMENT": "Development",
"BEAPI_URL": "http://localhost:4000/api/v1",
"VUE_BEAPI_URL": "http://localhost:4000/api/v1"
}
},
}
}
我的 vuejs 配置如下
export default {
// apiUrl: 'http://localhost:4000/api/v1'
apiUrl: process.env.VUE_BEAPI_URL
}
任何人都喜欢我的场景 除此之外,我的 vuejs 应用程序在 kesterl 下运行良好
【问题讨论】:
-
你使用的是什么版本的 vue.js?可能您需要将前缀 VUE_APP_ 添加到 ENV 以使它们在您的 vue.js 应用程序中可用。 stackoverflow.com/q/50828904/83039
-
我试过加VUE_APP_后缀但是没有效果。 vuejs 版本是 2.6.12
标签: vue.js asp.net-core kestrel-http-server