2020-02-27 11:25:55 +00:00
|
|
|
|
/* eslint-disable @typescript-eslint/no-var-requires */
|
2020-04-17 04:59:43 +00:00
|
|
|
|
const SentryWebpackPlugin = require("@sentry/webpack-plugin");
|
2022-06-21 13:57:34 +00:00
|
|
|
|
const { merge } = require("webpack-merge");
|
2020-04-17 04:59:43 +00:00
|
|
|
|
const common = require("./craco.common.config.js");
|
2020-05-05 12:16:51 +00:00
|
|
|
|
const WorkboxPlugin = require("workbox-webpack-plugin");
|
2022-02-04 20:22:31 +00:00
|
|
|
|
const CompressionPlugin = require("compression-webpack-plugin");
|
2022-09-30 06:27:29 +00:00
|
|
|
|
const { RetryChunkLoadPlugin } = require("webpack-retry-chunk-load-plugin");
|
2023-04-18 08:40:11 +00:00
|
|
|
|
const path = require("path");
|
2023-05-11 05:26:03 +00:00
|
|
|
|
|
2020-04-17 04:59:43 +00:00
|
|
|
|
const env = process.env.REACT_APP_ENVIRONMENT;
|
2023-04-18 08:40:11 +00:00
|
|
|
|
const isAirgap = process.env.REACT_APP_AIRGAP_ENABLED;
|
2020-04-17 04:59:43 +00:00
|
|
|
|
const plugins = [];
|
2020-03-05 09:17:10 +00:00
|
|
|
|
|
2020-09-02 19:47:49 +00:00
|
|
|
|
plugins.push(
|
|
|
|
|
|
new WorkboxPlugin.InjectManifest({
|
|
|
|
|
|
swSrc: "./src/serviceWorker.js",
|
|
|
|
|
|
mode: "development",
|
|
|
|
|
|
swDest: "./pageService.js",
|
2022-11-23 09:48:23 +00:00
|
|
|
|
maximumFileSizeToCacheInBytes: 11 * 1024 * 1024,
|
2023-05-24 07:20:26 +00:00
|
|
|
|
exclude: [
|
|
|
|
|
|
// Don’t cache source maps and PWA manifests.
|
|
|
|
|
|
// (These are the default values of the `exclude` option: https://developer.chrome.com/docs/workbox/reference/workbox-build/#type-WebpackPartial,
|
|
|
|
|
|
// so we need to specify them explicitly if we’re extending this array.)
|
|
|
|
|
|
/\.map$/,
|
|
|
|
|
|
/^manifest.*\.js$/,
|
|
|
|
|
|
// Don’t cache the root html file
|
|
|
|
|
|
/index\.html/,
|
|
|
|
|
|
// Don’t cache LICENSE.txt files emitted by CRA
|
|
|
|
|
|
// when a chunk includes some license comments
|
|
|
|
|
|
/LICENSE\.txt/,
|
2023-06-16 06:08:08 +00:00
|
|
|
|
// Don’t cache static icons as there are hundreds of them, and caching them all
|
|
|
|
|
|
// one by one (as the service worker does it) keeps the network busy for a long time
|
|
|
|
|
|
// and delays the service worker installation
|
|
|
|
|
|
/\/*\.svg$/,
|
2023-05-24 07:20:26 +00:00
|
|
|
|
],
|
|
|
|
|
|
// Don’t cache-bust JS and CSS chunks
|
|
|
|
|
|
dontCacheBustURLsMatching: /\.[0-9a-zA-Z]{8}\.chunk\.(js|css)$/,
|
2020-09-02 19:47:49 +00:00
|
|
|
|
}),
|
|
|
|
|
|
);
|
|
|
|
|
|
|
2020-04-17 04:59:43 +00:00
|
|
|
|
if (env === "PRODUCTION" || env === "STAGING") {
|
2021-01-12 12:45:15 +00:00
|
|
|
|
if (
|
|
|
|
|
|
process.env.SENTRY_AUTH_TOKEN != null &&
|
|
|
|
|
|
process.env.SENTRY_AUTH_TOKEN !== ""
|
|
|
|
|
|
) {
|
|
|
|
|
|
plugins.push(
|
|
|
|
|
|
new SentryWebpackPlugin({
|
|
|
|
|
|
include: "build",
|
|
|
|
|
|
ignore: ["node_modules", "webpack.config.js"],
|
|
|
|
|
|
release: process.env.REACT_APP_SENTRY_RELEASE,
|
|
|
|
|
|
deploy: {
|
2021-04-06 10:17:25 +00:00
|
|
|
|
env: process.env.REACT_APP_SENTRY_ENVIRONMENT,
|
|
|
|
|
|
},
|
|
|
|
|
|
}),
|
2021-01-12 12:45:15 +00:00
|
|
|
|
);
|
|
|
|
|
|
} else {
|
|
|
|
|
|
console.log(
|
|
|
|
|
|
"Sentry configuration missing in process environment. Sentry will be disabled.",
|
|
|
|
|
|
);
|
|
|
|
|
|
}
|
2020-03-05 09:17:10 +00:00
|
|
|
|
}
|
2022-02-04 20:22:31 +00:00
|
|
|
|
plugins.push(new CompressionPlugin());
|
|
|
|
|
|
|
|
|
|
|
|
plugins.push(
|
2022-06-21 13:57:34 +00:00
|
|
|
|
new CompressionPlugin({
|
|
|
|
|
|
algorithm: "brotliCompress",
|
|
|
|
|
|
filename: "[path][base].br",
|
2022-02-04 20:22:31 +00:00
|
|
|
|
test: /\.(js|css|html|svg)$/,
|
|
|
|
|
|
threshold: 10240,
|
|
|
|
|
|
minRatio: 0.8,
|
|
|
|
|
|
}),
|
|
|
|
|
|
);
|
2020-03-05 09:17:10 +00:00
|
|
|
|
|
2022-09-30 06:27:29 +00:00
|
|
|
|
plugins.push(
|
|
|
|
|
|
new RetryChunkLoadPlugin({
|
|
|
|
|
|
// optional value to set the amount of time in milliseconds before trying to load the chunk again. Default is 0
|
|
|
|
|
|
retryDelay: 3000,
|
|
|
|
|
|
// optional value to set the maximum number of retries to load the chunk. Default is 1
|
|
|
|
|
|
maxRetries: 2,
|
|
|
|
|
|
// optional code to be executed in the browser context if after all retries chunk is not loaded.
|
|
|
|
|
|
// if not set - nothing will happen and error will be returned to the chunk loader.
|
|
|
|
|
|
lastResortScript: "window.location.href='/404.html';",
|
|
|
|
|
|
}),
|
|
|
|
|
|
);
|
|
|
|
|
|
|
2020-02-27 11:25:55 +00:00
|
|
|
|
module.exports = merge(common, {
|
|
|
|
|
|
webpack: {
|
2023-05-11 05:26:03 +00:00
|
|
|
|
configure: {
|
|
|
|
|
|
plugins,
|
2023-04-18 08:40:11 +00:00
|
|
|
|
},
|
2020-02-27 11:25:55 +00:00
|
|
|
|
},
|
2021-04-06 10:17:25 +00:00
|
|
|
|
jest: {
|
|
|
|
|
|
configure: {
|
|
|
|
|
|
moduleNameMapper: {
|
|
|
|
|
|
// Jest module mapper which will detect our absolute imports.
|
|
|
|
|
|
"^@test(.*)$": "<rootDir>/test$1",
|
|
|
|
|
|
},
|
|
|
|
|
|
},
|
|
|
|
|
|
},
|
2023-05-11 05:26:03 +00:00
|
|
|
|
plugins: [
|
|
|
|
|
|
// Enable Airgap builds
|
|
|
|
|
|
{
|
|
|
|
|
|
plugin: {
|
|
|
|
|
|
overrideWebpackConfig: ({ context: { env, paths }, webpackConfig }) => {
|
|
|
|
|
|
if (env.REACT_APP_AIRGAP_ENABLED === "true" || isAirgap === "true") {
|
|
|
|
|
|
paths.appBuild = webpackConfig.output.path =
|
|
|
|
|
|
path.resolve("build_airgap");
|
|
|
|
|
|
}
|
|
|
|
|
|
return webpackConfig;
|
|
|
|
|
|
},
|
|
|
|
|
|
},
|
|
|
|
|
|
},
|
|
|
|
|
|
],
|
2020-02-27 11:25:55 +00:00
|
|
|
|
});
|