-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathwebpack.config.js
35 lines (33 loc) · 996 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
const createExpoWebpackConfigAsync = require("@expo/webpack-config");
const path = require("path");
const WorkboxWebpackPlugin = require("workbox-webpack-plugin");
module.exports = async function (env, argv) {
const isEnvProduction = env.mode === "production";
const config = await createExpoWebpackConfigAsync(env, argv);
config.module.rules.push(
{
test: /\.html$/i,
loader: "html-loader",
options: {
sources: false,
}
}
);
if (isEnvProduction) {
config.plugins.push(
new WorkboxWebpackPlugin.InjectManifest({
swSrc: path.resolve(__dirname, "src/service-worker.js"),
dontCacheBustURLsMatching: /\.[0-9a-f]{8}\./,
exclude: [
/\.map$/,
/asset-manifest\.json$/,
/LICENSE/,
/\.js\.gz$/,
/(apple-touch-startup-image|chrome-icon|apple-touch-icon).*\.png$/,
],
maximumFileSizeToCacheInBytes: 12 * 1024 * 1024
})
);
}
return config;
};