-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathwebpack.config.js
70 lines (67 loc) · 2.11 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
const webpack = require("webpack"); //to access built-in plugins
var path = require("path");
var APP = path.resolve(__dirname);
module.exports = {
context: APP,
entry: {
OP_Bundle: APP + "/assets/opstools/AppBuilder/OP/OP.js",
BuildApp: APP + "/assets/opstools/AppBuilder/AppBuilder.js"
},
output: {
path: APP + "/assets/opstools/BuildApp",
filename: "[name].js"
},
resolve: {
alias: {
OP: APP + "/assets/opstools/AppBuilder/OP/OP.js"
// it's important what kind of paths you're using (relative vs. absolute)
}
},
module: {
rules: [
{
test: /\.(js|jsx)$/,
loader: "babel-loader"
},
{
test: /\.css$/,
use: ["style-loader", "css-loader"]
},
{
test: /\.(eot|woff|woff2|svg|ttf)([\?]?.*)$/,
use: ["url-loader?limit=10000000"]
}
]
},
devtool: "source-map",
plugins: [
// new webpack.optimize.UglifyJsPlugin({
// compress: {
// warnings: true
// },
// sourceMap: true
// }),
// new webpack.LoaderOptionsPlugin({
// minimize: false // true
// }),
// *************************************************************************** //
// This builds the OP into same bundle but automatically handles the import //
// *************************************************************************** //
// new webpack.ProvidePlugin({
// OP: "OP"
// })
// ***************************************** //
// This builds the OP into a seperate bundle //
// ***************************************** //
/*
new webpack.optimize.CommonsChunkPlugin({
name: "OP_Bundle",
filename: "OP_Bundle.js",
// (Give the chunk a different name)
minChunks: Infinity,
// (with more entries, this ensures that no other module
// goes into the vendor chunk)
})
*/
]
};