forked from nujabes403/iost-extension
-
Notifications
You must be signed in to change notification settings - Fork 35
/
frontserver.local.js
43 lines (37 loc) · 1.08 KB
/
frontserver.local.js
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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
const opn = require('opn')
const path = require('path')
const uuid = require('uuid')
const express = require('express')
const webpack = require('webpack')
const webpackMiddleware = require('webpack-dev-middleware')
const webpackHotMiddleware = require('webpack-hot-middleware')
require('dotenv').config({ path: './config/local.env' })
const config = require('./webpack.config.js')
const port = process.env.PORT
const app = express()
const compiler = webpack(config)
const middleware = webpackMiddleware(compiler, {
publicPath: config.output.publicPath,
stats: {
colors: true,
hash: false,
timings: true,
chunks: false,
chunkModules: false,
modules: false,
},
writeToDisk: true,
})
app.use('/', express.static(path.resolve(__dirname)))
app.use(middleware)
app.use(webpackHotMiddleware(compiler))
app.get('*', function response(req, res) {
res.write(middleware.fileSystem.readFileSync(path.join(__dirname, 'dist/index.html')))
res.end()
})
app.listen(port, '0.0.0.0', function onStart(err) {
if (err) {
console.log(err)
}
opn(`http://localhost:${port}`);
})