forked from Tencent/vConsole
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathwebpack.serve.config.js
More file actions
51 lines (49 loc) · 1.41 KB
/
webpack.serve.config.js
File metadata and controls
51 lines (49 loc) · 1.41 KB
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
44
45
46
47
48
49
50
51
const Path = require('path');
const fs = require('fs');
const webpack = require('webpack');
const { merge } = require('webpack-merge');
const baseConfig = require('./webpack.config.js');
const contentBase = Path.join(__dirname, '/');
module.exports = (env, argv) => {
return merge(baseConfig(env, argv), {
mode: 'development',
// devtool: 'eval-source-map',
devtool: false,
devServer: {
host: '0.0.0.0',
port: 9191,
open: 'dev/index.html',
allowedHosts: 'all',
historyApiFallback: true,
client: {
overlay: true,
},
static: [
{ directory: contentBase, },
],
onBeforeSetupMiddleware(devServer) {
devServer.app.all('*', (req, res) => {
const delay = req.query.t || Math.ceil(Math.random() * 100);
setTimeout(() => {
res.status(req.query.s || 200);
const filePath = Path.join(contentBase, req.path);
try {
fs.accessSync(filePath, fs.constants.F_OK);
// res.send(fs.readFileSync(filePath));
res.sendFile(filePath);
} catch (e) {
res.end();
}
// console.log(req.query);
}, delay);
});
}
},
optimization: {
minimize: false,
},
plugins: [
new webpack.HotModuleReplacementPlugin()
]
});
};