forked from UniversalViewer/epub.js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathwebpack.config.js
46 lines (45 loc) · 1003 Bytes
/
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
var path = require("path");
var PROD = (process.env.NODE_ENV !== undefined && process.env.NODE_ENV.trim() === "production");
var LEGACY = (process.env.LEGACY);
var hostname = "localhost";
var port = 8080;
var enter = LEGACY ? {
"epub.legacy": ["@babel/polyfill", "./src/epub.js"]
} : {
"epub": "./src/epub.js",
};
module.exports = {
entry: enter,
mode: PROD ? "production" : "development",
devtool: PROD ? false : "source-map",
output: {
path: path.resolve("./dist"),
// path: "./dist",
filename: PROD ? "[name].min.js" : "[name].js",
sourceMapFilename: "[name].js.map",
library: "ePub",
libraryTarget: "umd",
publicPath: "/dist/"
},
externals: {
"jszip": "jszip",
"xmldom": "xmldom"
},
devServer: {
host: hostname,
port: port,
inline: true
},
module: {
rules: [
{
test: /\.js$/,
exclude: /node_modules\/(?!(marks-pane)\/).*/,
loader: "babel-loader",
options: {
presets: [["@babel/preset-env", { targets: "defaults"}]]
}
}
]
}
};