-
Notifications
You must be signed in to change notification settings - Fork 1
/
webpack.config.js
38 lines (33 loc) · 1.13 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
const createExpoWebpackConfigAsync = require("@expo/webpack-config");
const path = require("path");
const WorkboxWebpackPlugin = require("workbox-webpack-plugin");
const { BundleAnalyzerPlugin } = require('webpack-bundle-analyzer');
module.exports = async function (env, argv) {
// Set by expo-cli during `expo build:web`
const isEnvProduction = env.mode === "production";
// Create the default config
const config = await createExpoWebpackConfigAsync(env, argv);
if (isEnvProduction) {
config.plugins.push(
new WorkboxWebpackPlugin.InjectManifest({
swSrc: path.resolve(__dirname, "app/services/serviceWorker.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: 10 * 1024 * 1024,
})
);
// Uncomment to analyze bundle size
// config.plugins.push(
// new BundleAnalyzerPlugin({
// path: 'web-report',
// })
// );
}
return config;
};