Webpack launch browser automatically

前端 未结 9 947
遥遥无期
遥遥无期 2021-02-03 17:18

Gulp + live reload serves up my content on localhost and (here\'s what I\'m after) launches the browser automatically at the server url whenever i run the gulp

9条回答
  •  梦如初夏
    2021-02-03 18:16

    Launch browser automatically and it is also possible to specify a page when opening the browser with webpack 4.

    "scripts": {
       ...
       "start": "webpack-dev-server --open-page index2.html"
    }
    

提交回复
热议问题