1. IntroductionGenerally in our project development, there are usually the following three environments
2. Scenario Then there is a situation where we need to distinguish different
3. Create an environment Next, we create the module.exports = { test: { MODE: 'test' }, rc: { MODE: 'rc', }, prod: { MODE: 'prod', } } After configuring the corresponding environment, we add packaging commands to as follows: "build:test": "cross-env MODE=test nuxt build", "build:rc": "cross-env MODE=rc nuxt build", "build:prod": "cross-env MODE=prod nuxt build", 3.1 Injecting environment variables Open the const env = require('./env') module.exports = { env: { NUXT_ENV: env[process.env.MODE] } } 4. FinallyFinally, we use it in the page. The code is as follows: const api = { prod: 'http://ydhtml.com', test: 'http://test-ydhtml.com', rc: 'http://rc-ydhtml.com' } const baseURL = api[process.env.NUXT_ENV.MODE] This is the end of this article about nuxt.js multi-environment variable configuration. For more related nuxt.js multi-environment variable configuration content, please search 123WORDPRESS.COM's previous articles or continue to browse the following related articles. I hope everyone will support 123WORDPRESS.COM in the future! You may also be interested in:
|
<<: CSS animation property usage and example code (transition/transform/animation)
>>: Common HTML tag writing errors
0. Preliminary preparation Disable secure boot in...
1. Environmental Preparation 1.MySQL installation...
I just saw a post titled "Flow Theory and Des...
Preface Not long ago, I saw an interesting proble...
This article shares the specific code of the WeCh...
This article mainly introduces the installation/st...
Table of contents Preface Query usage scenario ca...
1. IT Mill Toolkit IT Mill Toolkit is an open sou...
1. Introduction When we log in to MySQL, we often...
gzip is a command often used in Linux systems to ...
Table of contents 1. What is a component? 2. Crea...
MySQL has the following logs: Error log: -log-err...
Table of contents Preface Check and uninstall Ope...
Table of contents 1. Introduction 2. GitHub 3. Ba...
Mac latest version of MySQL 8.0.22 password recov...