- Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathdevServer.js
More file actions
Latest commit
26 lines (21 loc) · 612 Bytes
/
Copy pathdevServer.js
File metadata and controls
26 lines (21 loc) · 612 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
varpath=require('path');
varexpress=require('express');
varwebpack=require('webpack');
varconfig=require('./webpack.config.dev');
varapp=express();
varcompiler=webpack(config);
app.use(require('webpack-dev-middleware')(compiler,{
noInfo: true,
publicPath: config.output.publicPath
}));
app.use(require('webpack-hot-middleware')(compiler));
app.get('*',function(req,res){
res.sendFile(path.join(__dirname,'index.html'));
});
app.listen(3000,'localhost',function(err){
if(err){
console.log(err);
return;
}
console.log('Listening at http://localhost:3000');
});