-
Notifications
You must be signed in to change notification settings - Fork 0
/
webpack.config.js
74 lines (73 loc) · 1.95 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
const webpack = require("webpack");
const path = require("path");
const BundleAnalyzerPlugin = require("webpack-bundle-analyzer").BundleAnalyzerPlugin;
const WebpackPwaManifest = require("webpack-pwa-manifest");
module.exports = {
// root of bundle and beginning of dependency graph
entry: {
app: "./assets/js/script.js",
events: "./assets/js/events.js",
schedule: "./assets/js/schedule.js",
tickets: "./assets/js/tickets.js"
},
// output bundled code from entry and place into "dist/main.bundle.js"
output: {
filename: "[name].bundle.js",
path: __dirname + "/dist"
},
module: {
rules: [
{
test: /\.jpg$/i,
use: [
{
loader: 'file-loader',
options: {
esModule: false,
name (file) {
return "[path][name].[ext]"
},
publicPath: function(url) {
return url.replace("../", "/assets/")
}
}
},
{
loader: "image-webpack-loader",
options: {
bypassOnDebug: true,
disable: true
}
}
]
}
]
},
plugins: [
new webpack.ProvidePlugin({
$: "jquery",
jQuery: "jquery"
}),
new BundleAnalyzerPlugin({
// report outputs to an HTML file in the dist folder
analyzerMode: "static"
}),
new WebpackPwaManifest({
name: "Food Event",
short_name: "Foodies",
description: "An app that allows you to view upcoming food events.",
start_url: "../index.html",
background_color: "#01579b",
theme_color: "#ffffff",
fingerprints: false,
inject: false,
icons: [{
src: path.resolve("assets/img/icons/icon-512x512.png"),
sizes: [96, 128, 192, 256, 384, 512],
destination: path.join("assets", "icons")
}]
})
],
// bundle code using development mode
mode: "development"
};