docs: Add browser doc for running dev in custom port (#3675)

Fixes #3674
This commit is contained in:
Harshavardhana
2017-02-01 13:12:13 -08:00
committed by GitHub
parent f612a7dd85
commit fc446e0b81
2 changed files with 48 additions and 12 deletions

View File

@@ -58,6 +58,7 @@ var exports = {
historyApiFallback: {
index: '/minio/'
},
port: 8888,
proxy: {
'/minio/webrpc': {
target: 'http://localhost:9000',
@@ -97,7 +98,7 @@ var exports = {
if (process.env.NODE_ENV === 'dev') {
exports.entry = [
'webpack/hot/dev-server',
'webpack-dev-server/client?http://localhost:8080',
'webpack-dev-server/client?http://localhost:8888',
path.resolve(__dirname, 'app/index.js')
]
}