This repository has been archived by the owner on Mar 15, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathwebpack.dev.js
72 lines (69 loc) · 2.39 KB
/
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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
/*******************************************************************************
* Copyright (c) 2018-2018 Red Hat, Inc.
* This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v2.0
* which is available at http://www.eclipse.org/legal/epl-2.0.html
*
* SPDX-License-Identifier: EPL-2.0
*
* Contributors:
* Red Hat, Inc. - initial API and implementation
*******************************************************************************/
const path = require('path');
const merge = require('webpack-merge');
const common = require('./webpack.common.js');
const HtmlWebpackPlugin = require('html-webpack-plugin');
module.exports = env => {
const proxyTarget = env && env.target ? env.target : 'http://localhost:8080';
return merge(
common,
{
mode: 'development',
devtool: 'inline-source-map',
module: {
rules: [
{
test: /\.css$/,
use: [{
loader: "style-loader" // creates style nodes from JS strings
}, {
loader: "css-loader" // translates CSS into CommonJS
}]
}
]
},
devServer: {
contentBase: path.resolve(__dirname, './target/dist'),
host: 'localhost',
port: 3000,
hot: true,
index: 'index.html',
historyApiFallback: true,
proxy: {
'/api/websocket': {
target: proxyTarget,
ws: true,
secure: false,
changeOrigin: true
},
'/api': {
target: proxyTarget,
secure: false,
changeOrigin: true,
headers: {
origin: proxyTarget
}
},
}
},
plugins: [
new HtmlWebpackPlugin({
inject: false,
title: "Che Workspace Loader",
template: "src/index.html",
urlPrefix: "/"
})
]
}
)
};