mirror of
https://github.com/scratchfoundation/scratch-vm.git
synced 2025-05-15 07:51:04 -04:00
Fix dev port number
scratch-www: 8333 scratch-api: 8491 scratch-gui: 8601 Clearly the port should be 8073 for scratch-vm.
This commit is contained in:
parent
084148e353
commit
5b36e3cacd
2 changed files with 3 additions and 2 deletions
|
@ -36,7 +36,7 @@ StartServerWindows.bat
|
||||||
```
|
```
|
||||||
|
|
||||||
## Playground
|
## Playground
|
||||||
To run the Playground, make sure the dev server's running and go to [http://localhost:8080/](http://localhost:8080/) - you will be directed to the playground, which demonstrates various tools and internal state.
|
To run the Playground, make sure the dev server's running and go to [http://localhost:8073/](http://localhost:8073/) - you will be directed to the playground, which demonstrates various tools and internal state.
|
||||||
|
|
||||||

|

|
||||||
|
|
||||||
|
|
|
@ -6,7 +6,8 @@ var webpack = require('webpack');
|
||||||
var base = {
|
var base = {
|
||||||
devServer: {
|
devServer: {
|
||||||
contentBase: path.resolve(__dirname, 'playground'),
|
contentBase: path.resolve(__dirname, 'playground'),
|
||||||
host: '0.0.0.0'
|
host: '0.0.0.0',
|
||||||
|
port: process.env.PORT || 8073
|
||||||
},
|
},
|
||||||
module: {
|
module: {
|
||||||
loaders: [
|
loaders: [
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue