-
Notifications
You must be signed in to change notification settings - Fork 1
/
webpack.config.js
54 lines (51 loc) · 1.58 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
const path = require('path');
const webpack = require("webpack");
const CopyWebpackPlugin = require('copy-webpack-plugin');
const BUILD_DIR = path.resolve(__dirname, 'public');
const APP_DIR = path.resolve(__dirname, 'src');
module.exports = {
entry: {
index: `${APP_DIR}/index`,
activate: `${APP_DIR}/activate`,
reset_password: `${APP_DIR}/reset_password`,
userinfo:`${APP_DIR}/userinfo`,
},
output: {
path: BUILD_DIR,
filename: "[name].js"
},
module: {
loaders: [
{
test: /\.js$/,
include: APP_DIR,
loader: "babel-loader"
},
{
test: /\.html$/,
use: [{
loader: "html-loader"
}]
},
{test: /\.css$/, loader: 'style-loader!css-loader'},
{test: /\.eot(\?v=\d+\.\d+\.\d+)?$/, loader: "file-loader"},
{test: /\.(woff|woff2)$/, loader: "url-loader?prefix=font/&limit=5000"},
{test: /\.ttf(\?v=\d+\.\d+\.\d+)?$/, loader: "url-loader?limit=10000&mimetype=application/octet-stream"},
{test: /\.svg(\?v=\d+\.\d+\.\d+)?$/, loader: "url-loader?limit=10000&mimetype=image/svg+xml"}
]
},
plugins: [
new CopyWebpackPlugin([
{from: 'src/public'},
]),
new webpack.optimize.UglifyJsPlugin({
compress: {
warnings: false
}
}),
new webpack.ProvidePlugin({
$: "jquery",
jQuery: "jquery"
})
]
};