This time I will bring you how to deal with the inaccessibility of the local IP when building the project. What are the precautions to solve the problem of inaccessibility of the local IP when building the project? The following is a practical case, let's take a look.
Problem
vue init webpack myproject The project built using localhost or 127.0.0.1 can be accessed normally, but switching to the local ip does not workSolution
Append the following code to webpack.dev.conf.const HOST = process.env.HOST || '0.0.0.0';
Restart
npm run dev
Just reopen it
Believe it After reading the case in this article, you have mastered the method. For more exciting information, please pay attention to other related articles on the PHP Chinese website! Recommended reading:JS traversal of irregular multi-dimensional array methods summary
Vue implementation of image carousel component tutorial detailed explanation
The above is the detailed content of The local IP cannot access the processing method when building the project. For more information, please follow other related articles on the PHP Chinese website!