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
|
const history = require('connect-history-api-fallback');
const convert = require('koa-connect');
const internalIp = require('internal-ip');
module.exports = {
entry: {
"vendor": ['react', 'react-dom', 'react-markdown', 'whatwg-fetch'],
"App": [
'file-loader?name=index.html!./src/views/index.html',
__dirname + "/src/App.js",
__dirname + "/src/style/main.css"
]
},
module: {
rules: [
{ test: /\.css$/, loader: "style-loader!css-loader" },
{ test: /\.js$/, exclude: /node_modules/, loader: "babel-loader" },
{ test: /\.(jpe?g|png|gif|svg)$/i, loaders: [
'file-loader?hash=sha512&digest=hex&name=[hash].[ext]'
]}
]
}
};
module.exports.serve = {
content: [__dirname],
host: internalIp.v4.sync(),
add: (app, middleware, options) => {
const historyOptions = {
// ... see: https://github.com/bripkens/connect-history-api-fallback#options
};
app.use(convert(history(historyOptions)));
}
};
|