-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathwebpack.dev.js
114 lines (107 loc) · 2.7 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
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
/*
* This file is part of communikey.
* Copyright (C) 2016-2018 communicode AG <communicode.de>
*
* communikey is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
const webpack = require("webpack");
const HtmlWebpackPlugin = require("html-webpack-plugin");
const FaviconsWebpackPlugin = require("favicons-webpack-plugin");
const path = require("path");
module.exports = {
devtool: "cheap-module-source-map",
entry: "./src/Communikey.js",
output: {
path: path.join(__dirname, "dist"),
filename: "communikey.min.js",
sourceMapFilename: "[file].map",
publicPath: "/"
},
devServer: {
contentBase: "src",
proxy: {
"/api/**": {
"target": "http://localhost:8080",
"secure": false
},
"/api**": {
"target": "http://localhost:8080",
"secure": false
},
"/oauth/**": {
"target": "http://localhost:8080",
"secure": false
},
"/wss/**": {
"target": "http://localhost:8080",
"secure": false
}
}
},
resolve: {
modules: ["node_modules", "./src"]
},
module: {
rules: [
{
enforce: "pre",
test: /\.js$/,
exclude: /(node_modules)/,
loader: "eslint-loader",
options: {
failOnError: true,
failOnWarning: false
}
},
{
test: /\.js?$/,
exclude: /(node_modules)/,
use: "babel-loader"
},
{
test: /\.css$/,
use: ["style-loader", "css-loader"]
},
{
test: /\.less$/,
use: ["style-loader", "css-loader","less-loader"]
},
{
test: /\.(jpg|png|gif)$/,
use: "file-loader"
},
{
test: /\.(woff|woff2|eot|ttf|[ot]tf|svg)$/,
use: "url-loader"
}
]
},
node: {
console: true,
net: "empty"
},
plugins: [
new webpack.LoaderOptionsPlugin({
minimize: false,
debug: true,
sourceMap: true
}),
new HtmlWebpackPlugin({
template: "./src/index.html"
}),
new FaviconsWebpackPlugin({
logo: "./src/assets/images/communikey-logo-light-dropshadow.svg"
})
]
};