1
0
mirror of https://github.com/haiwen/seahub.git synced 2025-09-11 20:01:10 +00:00

change menu implatement method

This commit is contained in:
shanshuirenjia
2018-12-11 13:22:52 +08:00
parent 48e855452f
commit ef3d5e5c6f
9 changed files with 85 additions and 166 deletions

View File

@@ -15,10 +15,10 @@ const devServerOptions = Object.assign({}, config.devServer, {
console.log('Dev server options:', devServerOptions);
const server = new WebpackDevServer(compiler, devServerOptions);
server.listen(3001, '0.0.0.0', function (err, result) {
server.listen(3000, '0.0.0.0', function (err, result) {
if (err) {
console.log(err)
}
console.log('Listening at 0.0.0.0:3001')
console.log('Listening at 0.0.0.0:3000')
})