-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathwebpack.config.js
102 lines (102 loc) · 2.1 KB
/
webpack.config.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
const path = require('path');
const webpack = require('webpack');
const HtmlWebpackPlugin = require('html-webpack-plugin');
const proxyIp = `http://121.41.51.24:4400`;
module.exports = {
entry: {
app: [
'react-hot-loader/patch',
path.resolve(__dirname, 'src/scripts/main.js'),
],
vendor: [
'jquery',
path.resolve(__dirname, 'src/scripts/widgets/plugin.js'),
'bootstrap/dist/js/bootstrap.js',
path.resolve(__dirname, 'src/scripts/metronic/scripts.bundle.js')
]
},
resolve: {
extensions: ['.js', '.jsx', '.scss', '.css']
},
output: {
path: path.resolve(__dirname, 'dist'),
filename: 'scripts/bundle.js'
},
devtool: 'eval-source-map',
module: {
rules:[
{
test: /\.jsx?$/,
use: ['babel-loader'],
include: [path.join(__dirname, 'src')]
}, {
test:/\.scss$/,
use:[
'style-loader',
'css-loader',
'postcss-loader',
'sass-loader',
],
}, {
test: /\.css$/,
use:[
'style-loader',
'css-loader',
'postcss-loader',
]
}, {
test:/\.(woff|svg|eot|ttf)\??.*$/,
use:'url-loader?limit=8192&name=fonts/[name].[ext]'
}, {
test:/\.(gif|jpg|png)\??.*$/,
use:'url-loader?limit=8192&name=images/[name].[ext]'
}
]
},
plugins: [
new webpack.HotModuleReplacementPlugin(),
new webpack.DefinePlugin({
'process.env.NODE_ENV': '"development"'
}),
new HtmlWebpackPlugin({
template: path.resolve(__dirname, 'src/index.html'),
}),
new webpack.optimize.CommonsChunkPlugin({name:'vendor',filename:'scripts/vendor.js'}),
new webpack.ProvidePlugin({
$: "jquery",
jQuery: "jquery",
"window.jQuery": "jquery",
Popper: ['popper.js', 'default'],
}),
],
devServer: {
hot: true,
port: 8081,
proxy: {
'/query/*': {
target: proxyIp,
secure: false
},
'/api/*': {
target: proxyIp,
secure: false
},
'/signIn': {
target: proxyIp,
secure: false
},
'/signOut': {
target: proxyIp,
secure: false
},
'/webjars/*':{
target: proxyIp,
secure: false
},
'/authenticate/*':{
target: proxyIp,
secure: false
},
},
},
}