nuxt.js multiple environment variable configuration

nuxt.js multiple environment variable configuration

1. Introduction

Generally in our project development, there are usually the following three environments

  • The development environment is also called the test environment (test)
  • RC environment is also called pre-release environment ( rc )
  • production environment

2. Scenario

Then there is a situation where we need to distinguish different api interfaces in different environments, for example

  • Test environment (test) api=test.ydhtml.com
  • Pre-release environment ( rc) api=rc.ydhtml.com
  • Online environment (production) api=ydhtml.com

3. Create an environment

Next, we create the env.js file in the root directory of the project with the following content

module.exports = {
    test: {
        MODE: 'test'
    },
    rc: {
        MODE: 'rc',
    },
    prod: {
        MODE: 'prod',
    }
}

After configuring the corresponding environment, we add packaging commands to scripts under package.json .

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 nuxt.config.js file and add the following code

const env = require('./env')
module.exports = {
    env: {
        NUXT_ENV: env[process.env.MODE]
    }
}

4. Finally

Finally, 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:
  • New ideas for time formatting in JavaScript toLocaleString()
  • isPrototypeOf Function in JavaScript
  • Detailed explanation of JavaScript prototype chain
  • JavaScript Composition and Inheritance Explained
  • Detailed explanation of js event delegation
  • Differences and usage examples of for, for...in, for...of and forEach in JS
  • Javascript uses the integrity attribute for security verification

<<:  CSS animation property usage and example code (transition/transform/animation)

>>:  Common HTML tag writing errors

Recommend

Tutorial on installing MySQL 5.7.28 on CentOS 6.2 (mysql notes)

1. Environmental Preparation 1.MySQL installation...

Website User Experience Design (UE)

I just saw a post titled "Flow Theory and Des...

How to update the view synchronously after data changes in Vue

Preface Not long ago, I saw an interesting proble...

WeChat applet custom tabbar component

This article shares the specific code of the WeCh...

Steps to install MySQL 5.7 in binary mode and optimize the system under Linux

This article mainly introduces the installation/st...

Mysql date formatting and complex date range query

Table of contents Preface Query usage scenario ca...

10 excellent Web UI libraries/frameworks

1. IT Mill Toolkit IT Mill Toolkit is an open sou...

Solution to mysql login warning problem

1. Introduction When we log in to MySQL, we often...

Linux gzip command compression file implementation principle and code examples

gzip is a command often used in Linux systems to ...

An article to show you how to create and use Vue components

Table of contents 1. What is a component? 2. Crea...

MySQL log settings and viewing methods

MySQL has the following logs: Error log: -log-err...

Introduction to installing and configuring JDK under CentOS system

Table of contents Preface Check and uninstall Ope...

Several ways to manually implement HMR in webpack

Table of contents 1. Introduction 2. GitHub 3. Ba...

How to retrieve password for mysql 8.0.22 on Mac

Mac latest version of MySQL 8.0.22 password recov...