-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdevServer.js
More file actions
29 lines (22 loc) · 723 Bytes
/
devServer.js
File metadata and controls
29 lines (22 loc) · 723 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
27
28
29
const express = require('express');
const path = require('path');
const webpack = require('webpack');
const webpackMiddleWare = require('webpack-dev-middleware');
//init app
const app = express();
const webpackConfig = require('./webpack.dev.config');
const compiler = webpack(webpackConfig);
//using webpack middleware for serving files on the fly
app.use(webpackMiddleWare(compiler,{
publicPath: webpackConfig.output.publicPath
}));
//this is for hot reloading
app.use(require('webpack-hot-middleware')(compiler));
app.get('*',(req,res)=>{
res.sendFile(path.join(__dirname,'src','index.html'));
})
app.listen(3000,(err)=>{
if(err)
return err;
console.log("server running at port 3000");
})