forked from readmeio/api-explorer
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathwebpack.config.js
More file actions
36 lines (35 loc) · 974 Bytes
/
webpack.config.js
File metadata and controls
36 lines (35 loc) · 974 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
30
31
32
33
34
35
36
const path = require('path');
const webpack = require('webpack');
const merge = require('webpack-merge');
const common = require('./webpack.common');
const log = require('./example/fixtures/requestmodel.json');
module.exports = merge(common, {
output: {
path: path.resolve(__dirname, 'example'),
filename: '[name]-bundle.js',
},
devServer: {
contentBase: './example',
publicPath: '/example/',
compress: true,
port: 9966,
hot: true,
watchContentBase: true,
before: (app) => {
app.get('/api/logs', (req, res) => {
// Simulate some loading time
setTimeout(() => {
// res.json([]); // no data state
res.json([...Array(5).keys()].map(() =>
({ ...log, _id: Math.random().toString(5)}),
));
}, 500);
});
},
},
plugins: [
new webpack.NamedModulesPlugin(),
new webpack.HotModuleReplacementPlugin(),
],
devtool: 'cheap-module-source-map',
});