do not open browser when runnig devServer
This commit is contained in:
parent
eb715144b3
commit
b56aa0d016
|
@ -6,6 +6,7 @@ A basic boilerplate for a Three.js project including the use of Webpack and ES6
|
||||||
## This Fork
|
## This Fork
|
||||||
|
|
||||||
* Replace `node-sass` with `sass`.
|
* Replace `node-sass` with `sass`.
|
||||||
|
* Do not open browser when running `devServer`.
|
||||||
|
|
||||||
## Project Structure
|
## Project Structure
|
||||||
```
|
```
|
||||||
|
|
|
@ -129,6 +129,7 @@ module.exports = env => {
|
||||||
|
|
||||||
devServer: {
|
devServer: {
|
||||||
static: 'src/public',
|
static: 'src/public',
|
||||||
|
open: false,
|
||||||
},
|
},
|
||||||
|
|
||||||
plugins: plugins.concat(
|
plugins: plugins.concat(
|
||||||
|
|
Loading…
Reference in New Issue