forked from standardnotes/app
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathwebpack.dev.js
33 lines (32 loc) · 902 Bytes
/
webpack.dev.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
const merge = require('webpack-merge');
const config = require('./webpack.config.js');
const HtmlWebpackPlugin = require('html-webpack-plugin');
module.exports = (env, argv) => {
const port = argv.port || 3001;
return merge(config(env, argv), {
mode: 'development',
/** Only create an html file for the dev-server */
plugins: argv.liveReload ? [
new HtmlWebpackPlugin({
template: './index.html',
templateParameters: {
env: process.env
},
}),
] : [],
devServer: {
proxy: {
'/extensions': {
target: `http://localhost:${port}`,
pathRewrite: { '^/extensions': '/public/extensions' }
},
'/assets': {
target: `http://localhost:${port}`,
pathRewrite: { '^/assets': '/public/assets' }
},
},
port,
writeToDisk: argv.writeToDisk,
}
});
};