Webpack-dev-server Remote Access configuration method,

Source: Internet
Author: User

Webpack-dev-server Remote Access configuration method,

The webpack-dev-server configured in the package. json file below is the Development Mode. You can use http: // localhost: 8080 or http: // 127.0.0.1: 8080 for access.

"Scripts": {"dev": "cross-env NODE_ENV = development webpack-dev-server -- open -- hot", "build ": "rimraf dist & cross-env NODE_ENV = production webpack -- progress -- hide-modules "},

Modify the package. json file when you need remote access.

"Scripts": {"dev": "webpack-dev-server -- host 10.30.1.102 -- devtool eval -- progress -- colors -- hot -- content-base build", "build ": "rimraf dist & cross-env NODE_ENV = production webpack -- progress -- hide-modules "},

In this case, access can be performed through http: // 192.168.10.8: 8080 or http: // 127.0.0.1: 8080, but http: // localhost: 8080 cannot be accessed.

The above webpack-dev-server Remote Access configuration method is all the content that I have shared with you. I hope to give you a reference and support for the customer's home.

Related Article

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.