我正在尝试在Nuxt 3中设置开发/生产环境。原因是一些测试。如果应用程序URL以develop-,staging-开头,或测试─我想使用一个测试端点,如https://develop-www.app.com/。我有我的nuxt配置设置,它的工作时,我在本地运行,并在prod通过创建变量关闭NODE环境。然而,当在任何测试环境中前面提到的应用程序正在使用PROD端点,因为它不知道它是一个开发环境。有没有一种方法可以基于NODE env设置它?
nuxt config
const isProdEnv = process.env.NODE_ENV === 'production';
const testServicesEndpoint =
'https://test-services.location';
const prodServicesEndpoint =
'https://services.prodlocation';
const servicesEndpoint = isProdEnv
? prodServicesEndpoint
: testServicesEndpoint;
export default defineNuxtConfig({
runtimeConfig: {
public: {
apiBase: servicesEndpoint,
},
},
})
字符串
我创建了一个generateTest动作,如果分支不等于main,它将在github动作中运行,我认为这是可行的,但构建显示了这个错误:
[警告]将NODE_ENV
从development
更改为production
,以避免意外行为。
"scripts": {
"build": "nuxt build",
"dev": "nuxt dev",
"generate": "nuxt generate",
"generateTest": "NODE_ENV=development nuxt generate",
"preview": "nuxt preview",
"postinstall": "nuxt prepare"
},
型
1条答案
按热度按时间toe950271#
当Nuxt构建
dist
时,它不会知道当前的域,因为没有请求发送到Nuxt。多个
.env
文件可以满足您的需求。例如,在Nuxt项目根目录中,
字符串
特别是
package.json
中的ENV
.env
的自定义文件型