Solve the problem of inconsistent front and back end ports of Vue

Solve the problem of inconsistent front and back end ports of Vue

Vue front and back end ports are inconsistent

In the config index.js file

Just import the following code

proxyTable: {
'/api': {
target: 'http://localhost:3000', //The backend interface to be accessed changeOrigin: true,
pathRewrite: {
'^/api': '/'
//The configuration here is a regular expression. The one starting with /api will be replaced with '/api'. If the interface of the backend document is /api/list/xxx
//The front-end API interface is written as: axios.get('/api/list/xxx'), and the actual access after processing is: http://news.baidu.com/api/list/xxx
}
}},

The port number of vue server startup is different every time

Yesterday I ran a project given by a friend on my computer. Since he was using vue3.0 and I was using vue2.5.2, there was an error message when running his project. It might be a version problem. I followed the error message to download the plug-in, and his project worked. But since then, every time I run my project, I find that the port number is different.

Solution:

First download npm install [email protected]

Reinstall dependencies npm install

Restart the project npm run dev

The above is my personal experience. I hope it can give you a reference. I also hope that you will support 123WORDPRESS.COM.

You may also be interested in:
  • How to implement different ports on the front and back ends of Vue
  • Solve the problem of using proxy to configure different ports and IP interfaces in Vue
  • Analysis of solutions to cross-domain problems in vue+springboot front-end and back-end separation projects
  • Solve the problem that the VUE project localhost port server refuses to connect and can only use 127.0.0.1
  • Detailed explanation of the front-end and back-end deployment tutorial based on Vue and Nginx

<<:  Solve the black screen problem after VMware installs Linux system and starts

>>:  A simple method to merge and remove duplicate MySQL tables

Recommend

CSS syntax for table borders

<br /> CSS syntax for table borders The spec...

Oracle VM VirtualBox installation of CentOS7 operating system tutorial diagram

Table of contents Installation Steps Environment ...

HTML Tutorial: Collection of commonly used HTML tags (5)

Related articles: Beginners learn some HTML tags ...

How to install Docker and configure Alibaba Cloud Image Accelerator

Docker Installation There is no need to talk abou...

How to install binary MySQL on Linux and crack MySQL password

1. Make sure the system has the required libaio s...

Detailed configuration of mysql8.x docker remote access

Table of contents Environmental conditions Errors...

MySQL 8 new features: Invisible Indexes

background Indexes are a double-edged sword. Whil...

MySQL sorting using index scan

Table of contents Install sakila Index Scan Sort ...

Which loop is the fastest in JavaScript?

Knowing which for loop or iterator is right for o...

HTML+CSS to achieve layered pyramid example

This article mainly introduces the example of imp...

How to use union all in MySQL to get the union sort

Sometimes in a project, due to some irreversible ...

Nginx rewrite regular matching rewriting method example

Nginx's rewrite function supports regular mat...