webpack.config.ts 25 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774
  1. /* eslint-env node */
  2. /* eslint import/no-nodejs-modules:0 */
  3. import fs from 'fs';
  4. import path from 'path';
  5. import CompressionPlugin from 'compression-webpack-plugin';
  6. import CopyPlugin from 'copy-webpack-plugin';
  7. import CssMinimizerPlugin from 'css-minimizer-webpack-plugin';
  8. import ForkTsCheckerWebpackPlugin from 'fork-ts-checker-webpack-plugin';
  9. import MiniCssExtractPlugin from 'mini-css-extract-plugin';
  10. import webpack from 'webpack';
  11. import {Configuration as DevServerConfig} from 'webpack-dev-server';
  12. import FixStyleOnlyEntriesPlugin from 'webpack-remove-empty-scripts';
  13. // import ComponentPropsPlugin from './build-utils/component-props-plugin';
  14. import IntegrationDocsFetchPlugin from './build-utils/integration-docs-fetch-plugin';
  15. import LastBuiltPlugin from './build-utils/last-built-plugin';
  16. import ListFilesPlugin from './build-utils/list-files-plugin';
  17. import SentryInstrumentation from './build-utils/sentry-instrumentation';
  18. import {extractIOSDeviceNames} from './scripts/extract-ios-device-names';
  19. import babelConfig from './babel.config';
  20. // Runs as part of prebuild step to generate a list of identifier -> name mappings for iOS
  21. (async () => {
  22. await extractIOSDeviceNames();
  23. })();
  24. /**
  25. * Merges the devServer config into the webpack config
  26. *
  27. * See: https://github.com/DefinitelyTyped/DefinitelyTyped/issues/43232
  28. */
  29. interface Configuration extends webpack.Configuration {
  30. devServer?: DevServerConfig;
  31. }
  32. const {env} = process;
  33. // Environment configuration
  34. env.NODE_ENV = env.NODE_ENV ?? 'development';
  35. const IS_PRODUCTION = env.NODE_ENV === 'production';
  36. const IS_TEST = env.NODE_ENV === 'test' || !!env.TEST_SUITE;
  37. // This is used to stop rendering dynamic content for tests/snapshots
  38. // We want it in the case where we are running tests and it is in CI,
  39. // this should not happen in local
  40. const IS_CI = !!env.CI;
  41. // We intentionally build in production mode for acceptance tests, so we explicitly use an env var to
  42. // say that the bundle will be used in acceptance tests. This affects webpack plugins and components
  43. // with dynamic data that render differently statically in tests.
  44. //
  45. // Note, cannot assume it is an acceptance test if `IS_CI` is true, as our image builds has the
  46. // `CI` env var set.
  47. const IS_ACCEPTANCE_TEST = !!env.IS_ACCEPTANCE_TEST;
  48. const IS_DEPLOY_PREVIEW = !!env.NOW_GITHUB_DEPLOYMENT;
  49. const IS_UI_DEV_ONLY = !!env.SENTRY_UI_DEV_ONLY;
  50. const DEV_MODE = !(IS_PRODUCTION || IS_CI);
  51. const WEBPACK_MODE: Configuration['mode'] = IS_PRODUCTION ? 'production' : 'development';
  52. const CONTROL_SILO_PORT = env.SENTRY_CONTROL_SILO_PORT;
  53. // Environment variables that are used by other tooling and should
  54. // not be user configurable.
  55. //
  56. // Ports used by webpack dev server to proxy to backend and webpack
  57. const SENTRY_BACKEND_PORT = env.SENTRY_BACKEND_PORT;
  58. const SENTRY_WEBPACK_PROXY_HOST = env.SENTRY_WEBPACK_PROXY_HOST;
  59. const SENTRY_WEBPACK_PROXY_PORT = env.SENTRY_WEBPACK_PROXY_PORT;
  60. const SENTRY_RELEASE_VERSION = env.SENTRY_RELEASE_VERSION;
  61. // Used by sentry devserver runner to force using webpack-dev-server
  62. const FORCE_WEBPACK_DEV_SERVER = !!env.FORCE_WEBPACK_DEV_SERVER;
  63. const HAS_WEBPACK_DEV_SERVER_CONFIG =
  64. !!SENTRY_BACKEND_PORT && !!SENTRY_WEBPACK_PROXY_PORT;
  65. // User/tooling configurable environment variables
  66. const NO_DEV_SERVER = !!env.NO_DEV_SERVER; // Do not run webpack dev server
  67. const SHOULD_FORK_TS = DEV_MODE && !env.NO_TS_FORK; // Do not run fork-ts plugin (or if not dev env)
  68. const SHOULD_HOT_MODULE_RELOAD = DEV_MODE && !!env.SENTRY_UI_HOT_RELOAD;
  69. const SHOULD_LAZY_LOAD = DEV_MODE && !!env.SENTRY_UI_LAZY_LOAD;
  70. // Deploy previews are built using vercel. We can check if we're in vercel's
  71. // build process by checking the existence of the PULL_REQUEST env var.
  72. const DEPLOY_PREVIEW_CONFIG = IS_DEPLOY_PREVIEW && {
  73. branch: env.NOW_GITHUB_COMMIT_REF,
  74. commitSha: env.NOW_GITHUB_COMMIT_SHA,
  75. githubOrg: env.NOW_GITHUB_COMMIT_ORG,
  76. githubRepo: env.NOW_GITHUB_COMMIT_REPO,
  77. };
  78. // When deploy previews are enabled always enable experimental SPA mode --
  79. // deploy previews are served standalone. Otherwise fallback to the environment
  80. // configuration.
  81. const SENTRY_EXPERIMENTAL_SPA =
  82. !DEPLOY_PREVIEW_CONFIG && !IS_UI_DEV_ONLY ? !!env.SENTRY_EXPERIMENTAL_SPA : true;
  83. // We should only read from the SENTRY_SPA_DSN env variable if SENTRY_EXPERIMENTAL_SPA
  84. // is true. This is to make sure we can validate that the experimental SPA mode is
  85. // working properly.
  86. const SENTRY_SPA_DSN = SENTRY_EXPERIMENTAL_SPA ? env.SENTRY_SPA_DSN : undefined;
  87. // this is the path to the django "sentry" app, we output the webpack build here to `dist`
  88. // so that `django collectstatic` and so that we can serve the post-webpack bundles
  89. const sentryDjangoAppPath = path.join(__dirname, 'src/sentry/static/sentry');
  90. const distPath = env.SENTRY_STATIC_DIST_PATH || path.join(sentryDjangoAppPath, 'dist');
  91. const staticPrefix = path.join(__dirname, 'static');
  92. // Locale file extraction build step
  93. if (env.SENTRY_EXTRACT_TRANSLATIONS === '1') {
  94. babelConfig.plugins?.push([
  95. 'module:babel-gettext-extractor',
  96. {
  97. fileName: 'build/javascript.po',
  98. baseDirectory: path.join(__dirname),
  99. functionNames: {
  100. gettext: ['msgid'],
  101. ngettext: ['msgid', 'msgid_plural', 'count'],
  102. gettextComponentTemplate: ['msgid'],
  103. t: ['msgid'],
  104. tn: ['msgid', 'msgid_plural', 'count'],
  105. tct: ['msgid'],
  106. },
  107. },
  108. ]);
  109. }
  110. // Locale compilation and optimizations.
  111. //
  112. // Locales are code-split from the app and vendor chunk into separate chunks
  113. // that will be loaded by layout.html depending on the users configured locale.
  114. //
  115. // Code splitting happens using the splitChunks plugin, configured under the
  116. // `optimization` key of the webpack module. We create chunk (cache) groups for
  117. // each of our supported locales and extract the PO files and moment.js locale
  118. // files into each chunk.
  119. //
  120. // A plugin is used to remove the locale chunks from the app entry's chunk
  121. // dependency list, so that our compiled bundle does not expect that *all*
  122. // locale chunks must be loaded
  123. const localeCatalogPath = path.join(
  124. __dirname,
  125. 'src',
  126. 'sentry',
  127. 'locale',
  128. 'catalogs.json'
  129. );
  130. type LocaleCatalog = {
  131. supported_locales: string[];
  132. };
  133. const localeCatalog: LocaleCatalog = JSON.parse(
  134. fs.readFileSync(localeCatalogPath, 'utf8')
  135. );
  136. // Translates a locale name to a language code.
  137. //
  138. // * po files are kept in a directory represented by the locale name [0]
  139. // * moment.js locales are stored as language code files
  140. //
  141. // [0] https://docs.djangoproject.com/en/2.1/topics/i18n/#term-locale-name
  142. const localeToLanguage = (locale: string) => locale.toLowerCase().replace('_', '-');
  143. const supportedLocales = localeCatalog.supported_locales;
  144. const supportedLanguages = supportedLocales.map(localeToLanguage);
  145. type CacheGroups = Exclude<
  146. NonNullable<Configuration['optimization']>['splitChunks'],
  147. false | undefined
  148. >['cacheGroups'];
  149. type CacheGroupTest = (
  150. module: webpack.Module,
  151. context: Parameters<webpack.optimize.SplitChunksPlugin['options']['getCacheGroups']>[1]
  152. ) => boolean;
  153. // A mapping of chunk groups used for locale code splitting
  154. const localeChunkGroups: CacheGroups = {};
  155. supportedLocales
  156. // No need to split the english locale out as it will be completely empty and
  157. // is not included in the django layout.html.
  158. .filter(l => l !== 'en')
  159. .forEach(locale => {
  160. const language = localeToLanguage(locale);
  161. const group = `locale/${language}`;
  162. // List of module path tests to group into locale chunks
  163. const localeGroupTests = [
  164. new RegExp(`locale\\/${locale}\\/.*\\.po$`),
  165. new RegExp(`moment\\/locale\\/${language}\\.js$`),
  166. ];
  167. // module test taken from [0] and modified to support testing against
  168. // multiple expressions.
  169. //
  170. // [0] https://github.com/webpack/webpack/blob/7a6a71f1e9349f86833de12a673805621f0fc6f6/lib/optimize/SplitChunksPlugin.js#L309-L320
  171. const groupTest: CacheGroupTest = (module, {chunkGraph}) =>
  172. localeGroupTests.some(pattern =>
  173. pattern.test(module?.nameForCondition?.() ?? '')
  174. ? true
  175. : chunkGraph.getModuleChunks(module).some(c => c.name && pattern.test(c.name))
  176. );
  177. // We are defining a chunk that combines the django language files with
  178. // moment's locales as if you want one, you will want the other.
  179. //
  180. // In the application code you will still need to import via their module
  181. // paths and not the chunk name
  182. localeChunkGroups[group] = {
  183. chunks: 'async',
  184. name: group,
  185. test: groupTest,
  186. enforce: true,
  187. };
  188. });
  189. const babelOptions = {...babelConfig, cacheDirectory: true};
  190. const babelLoaderConfig = {
  191. loader: 'babel-loader',
  192. options: babelOptions,
  193. };
  194. /**
  195. * Main Webpack config for Sentry React SPA.
  196. */
  197. const appConfig: Configuration = {
  198. mode: WEBPACK_MODE,
  199. entry: {
  200. /**
  201. * Main Sentry SPA
  202. *
  203. * The order here matters for `getsentry`
  204. */
  205. app: ['sentry/utils/statics-setup', 'sentry'],
  206. /**
  207. * Pipeline View for integrations
  208. */
  209. pipeline: ['sentry/utils/statics-setup', 'sentry/views/integrationPipeline'],
  210. /**
  211. * Legacy CSS Webpack appConfig for Django-powered views.
  212. * This generates a single "sentry.css" file that imports ALL component styles
  213. * for use on Django-powered pages.
  214. */
  215. sentry: 'less/sentry.less',
  216. },
  217. context: staticPrefix,
  218. module: {
  219. /**
  220. * XXX: Modifying the order/contents of these rules may break `getsentry`
  221. * Please remember to test it.
  222. */
  223. rules: [
  224. {
  225. test: /\.[tj]sx?$/,
  226. include: [staticPrefix],
  227. exclude: /(vendor|node_modules|dist)/,
  228. use: babelLoaderConfig,
  229. },
  230. {
  231. test: /\.po$/,
  232. use: {
  233. loader: 'po-catalog-loader',
  234. options: {
  235. referenceExtensions: ['.js', '.jsx', '.tsx'],
  236. domain: 'sentry',
  237. },
  238. },
  239. },
  240. {
  241. test: /\.pegjs/,
  242. use: {loader: 'pegjs-loader'},
  243. },
  244. {
  245. test: /\.css/,
  246. use: ['style-loader', 'css-loader'],
  247. },
  248. {
  249. test: /\.less$/,
  250. include: [staticPrefix],
  251. use: [
  252. {
  253. loader: MiniCssExtractPlugin.loader,
  254. options: {
  255. publicPath: 'auto',
  256. },
  257. },
  258. 'css-loader',
  259. 'less-loader',
  260. ],
  261. },
  262. {
  263. test: /\.(woff|woff2|ttf|eot|svg|png|gif|ico|jpg|mp4)($|\?)/,
  264. type: 'asset',
  265. },
  266. ],
  267. noParse: [
  268. // don't parse known, pre-built javascript files (improves webpack perf)
  269. /jed\/jed\.js/,
  270. /marked\/lib\/marked\.js/,
  271. /terser\/dist\/bundle\.min\.js/,
  272. ],
  273. },
  274. plugins: [
  275. /**
  276. * Adds build time measurement instrumentation, which will be reported back
  277. * to sentry
  278. */
  279. new SentryInstrumentation(),
  280. // Do not bundle moment's locale files as we will lazy load them using
  281. // dynamic imports in the application code
  282. new webpack.IgnorePlugin({
  283. contextRegExp: /moment$/,
  284. resourceRegExp: /^\.\/locale$/,
  285. }),
  286. /**
  287. * TODO(epurkhiser): Figure out if we still need these
  288. */
  289. new webpack.ProvidePlugin({
  290. process: 'process/browser',
  291. Buffer: ['buffer', 'Buffer'],
  292. }),
  293. /**
  294. * Extract CSS into separate files.
  295. */
  296. new MiniCssExtractPlugin({
  297. // We want the sentry css file to be unversioned for frontend-only deploys
  298. // We will cache using `Cache-Control` headers
  299. filename: 'entrypoints/[name].css',
  300. }),
  301. /**
  302. * Defines environment specific flags.
  303. */
  304. new webpack.DefinePlugin({
  305. 'process.env': {
  306. NODE_ENV: JSON.stringify(env.NODE_ENV),
  307. IS_ACCEPTANCE_TEST: JSON.stringify(IS_ACCEPTANCE_TEST),
  308. DEPLOY_PREVIEW_CONFIG: JSON.stringify(DEPLOY_PREVIEW_CONFIG),
  309. EXPERIMENTAL_SPA: JSON.stringify(SENTRY_EXPERIMENTAL_SPA),
  310. SPA_DSN: JSON.stringify(SENTRY_SPA_DSN),
  311. SENTRY_RELEASE_VERSION: JSON.stringify(SENTRY_RELEASE_VERSION),
  312. },
  313. }),
  314. /**
  315. * This removes empty js files for style only entries (e.g. sentry.less)
  316. */
  317. new FixStyleOnlyEntriesPlugin({verbose: false}),
  318. /**
  319. * Read typescript props for all component files, so we can auto-generate
  320. * docs and widgets inside our story files.
  321. */
  322. // new ComponentPropsPlugin({
  323. // cwd: staticPrefix,
  324. // pattern: 'app/components/**/*.tsx',
  325. // output: path.join(
  326. // staticPrefix,
  327. // 'app',
  328. // 'constants',
  329. // 'generated-ui-component-props.tsx'
  330. // ),
  331. // }),
  332. /**
  333. * List all story files, so we can render links to them at the /stories page
  334. */
  335. new ListFilesPlugin({
  336. cwd: staticPrefix,
  337. pattern: ['app/components/**/*.stories.tsx', 'app/icons/**/*.stories.tsx'],
  338. output: path.join(
  339. staticPrefix,
  340. 'app',
  341. 'constants',
  342. 'generated-ui-stories-list.tsx'
  343. ),
  344. }),
  345. ...(SHOULD_FORK_TS
  346. ? [
  347. new ForkTsCheckerWebpackPlugin({
  348. typescript: {
  349. configFile: path.resolve(__dirname, './config/tsconfig.build.json'),
  350. configOverwrite: {
  351. compilerOptions: {incremental: true},
  352. },
  353. },
  354. devServer: false,
  355. // memorylimit is configured in package.json
  356. }),
  357. ]
  358. : []),
  359. /**
  360. * Restrict translation files that are pulled in through app/translations.jsx
  361. * and through moment/locale/* to only those which we create bundles for via
  362. * locale/catalogs.json.
  363. *
  364. * Without this, webpack will still output all of the unused locale files despite
  365. * the application never loading any of them.
  366. */
  367. new webpack.ContextReplacementPlugin(
  368. /sentry-locale$/,
  369. path.join(__dirname, 'src', 'sentry', 'locale', path.sep),
  370. true,
  371. new RegExp(`(${supportedLocales.join('|')})/.*\\.po$`)
  372. ),
  373. new webpack.ContextReplacementPlugin(
  374. /moment\/locale/,
  375. new RegExp(`(${supportedLanguages.join('|')})\\.js$`)
  376. ),
  377. /**
  378. * Copies file logo-sentry.svg to the dist/entrypoints directory so that it can be accessed by
  379. * the backend
  380. */
  381. new CopyPlugin({
  382. patterns: [
  383. {
  384. from: path.join(staticPrefix, 'images/logo-sentry.svg'),
  385. to: 'entrypoints/logo-sentry.svg',
  386. toType: 'file',
  387. },
  388. // Add robots.txt when deploying in preview mode so public previews do
  389. // not get indexed by bots.
  390. ...(IS_DEPLOY_PREVIEW
  391. ? [
  392. {
  393. from: path.join(staticPrefix, 'robots-dev.txt'),
  394. to: 'robots.txt',
  395. toType: 'file' as const,
  396. },
  397. ]
  398. : []),
  399. ],
  400. }),
  401. ],
  402. resolve: {
  403. alias: {
  404. 'react-dom$': 'react-dom/profiling',
  405. 'scheduler/tracing': 'scheduler/tracing-profiling',
  406. sentry: path.join(staticPrefix, 'app'),
  407. 'sentry-images': path.join(staticPrefix, 'images'),
  408. 'sentry-logos': path.join(sentryDjangoAppPath, 'images', 'logos'),
  409. 'sentry-fonts': path.join(staticPrefix, 'fonts'),
  410. // Aliasing this for getsentry's build, otherwise `less/select2` will not be able
  411. // to be resolved
  412. less: path.join(staticPrefix, 'less'),
  413. 'sentry-test': path.join(__dirname, 'tests', 'js', 'sentry-test'),
  414. 'sentry-locale': path.join(__dirname, 'src', 'sentry', 'locale'),
  415. 'ios-device-list': path.join(
  416. __dirname,
  417. 'node_modules',
  418. 'ios-device-list',
  419. 'dist',
  420. 'ios-device-list.min.js'
  421. ),
  422. },
  423. fallback: {
  424. vm: false,
  425. stream: false,
  426. crypto: require.resolve('crypto-browserify'),
  427. // `yarn why` says this is only needed in dev deps
  428. string_decoder: false,
  429. },
  430. modules: ['node_modules'],
  431. extensions: ['.jsx', '.js', '.json', '.ts', '.tsx', '.less'],
  432. },
  433. output: {
  434. clean: true, // Clean the output directory before emit.
  435. path: distPath,
  436. publicPath: '',
  437. filename: 'entrypoints/[name].js',
  438. chunkFilename: 'chunks/[name].[contenthash].js',
  439. sourceMapFilename: 'sourcemaps/[name].[contenthash].js.map',
  440. assetModuleFilename: 'assets/[name].[contenthash][ext]',
  441. },
  442. optimization: {
  443. chunkIds: 'named',
  444. moduleIds: 'named',
  445. splitChunks: {
  446. // Only affect async chunks, otherwise webpack could potentially split our initial chunks
  447. // Which means the app will not load because we'd need these additional chunks to be loaded in our
  448. // django template.
  449. chunks: 'async',
  450. maxInitialRequests: 10, // (default: 30)
  451. maxAsyncRequests: 10, // (default: 30)
  452. cacheGroups: {
  453. ...localeChunkGroups,
  454. },
  455. },
  456. // This only runs in production mode
  457. // Grabbed this example from https://github.com/webpack-contrib/css-minimizer-webpack-plugin
  458. minimizer: ['...', new CssMinimizerPlugin()],
  459. },
  460. devtool: IS_PRODUCTION ? 'source-map' : 'eval-cheap-module-source-map',
  461. };
  462. if (IS_TEST || IS_ACCEPTANCE_TEST) {
  463. appConfig.resolve!.alias!['integration-docs-platforms'] = path.join(
  464. __dirname,
  465. 'fixtures/integration-docs/_platforms.json'
  466. );
  467. } else {
  468. const plugin = new IntegrationDocsFetchPlugin({basePath: __dirname});
  469. appConfig.plugins?.push(plugin);
  470. appConfig.resolve!.alias!['integration-docs-platforms'] = plugin.modulePath;
  471. }
  472. if (IS_ACCEPTANCE_TEST) {
  473. appConfig.plugins?.push(new LastBuiltPlugin({basePath: __dirname}));
  474. }
  475. // Dev only! Hot module reloading
  476. if (
  477. FORCE_WEBPACK_DEV_SERVER ||
  478. (HAS_WEBPACK_DEV_SERVER_CONFIG && !NO_DEV_SERVER) ||
  479. IS_UI_DEV_ONLY
  480. ) {
  481. if (SHOULD_HOT_MODULE_RELOAD) {
  482. // Hot reload react components on save
  483. // We include the library here as to not break docker/google cloud builds
  484. // since we do not install devDeps there.
  485. const ReactRefreshWebpackPlugin = require('@pmmmwh/react-refresh-webpack-plugin');
  486. appConfig.plugins?.push(new ReactRefreshWebpackPlugin());
  487. // TODO: figure out why defining output breaks hot reloading
  488. if (IS_UI_DEV_ONLY) {
  489. appConfig.output = {};
  490. }
  491. if (SHOULD_LAZY_LOAD) {
  492. appConfig.experiments = {
  493. lazyCompilation: {
  494. // enable lazy compilation for dynamic imports
  495. imports: true,
  496. // disable lazy compilation for entries
  497. entries: false,
  498. },
  499. };
  500. }
  501. }
  502. appConfig.devServer = {
  503. headers: {
  504. 'Access-Control-Allow-Origin': '*',
  505. 'Access-Control-Allow-Credentials': 'true',
  506. 'Document-Policy': 'js-profiling',
  507. },
  508. // Cover the various environments we use (vercel, getsentry-dev, localhost)
  509. allowedHosts: [
  510. '.sentry.dev',
  511. '.dev.getsentry.net',
  512. '.localhost',
  513. '127.0.0.1',
  514. '.docker.internal',
  515. ],
  516. static: {
  517. directory: './src/sentry/static/sentry',
  518. watch: true,
  519. },
  520. host: SENTRY_WEBPACK_PROXY_HOST,
  521. // Don't reload on errors
  522. hot: 'only',
  523. port: Number(SENTRY_WEBPACK_PROXY_PORT),
  524. devMiddleware: {
  525. stats: 'errors-only',
  526. },
  527. client: {
  528. overlay: false,
  529. },
  530. };
  531. if (!IS_UI_DEV_ONLY) {
  532. // This proxies to local backend server
  533. const backendAddress = `http://127.0.0.1:${SENTRY_BACKEND_PORT}/`;
  534. const relayAddress = 'http://127.0.0.1:7899';
  535. // If we're running siloed servers we also need to proxy
  536. // those requests to the right server.
  537. let controlSiloProxy = {};
  538. if (CONTROL_SILO_PORT) {
  539. // TODO(hybridcloud) We also need to use this URL pattern
  540. // list to select contro/region when making API requests in non-proxied
  541. // environments (like production). We'll likely need a way to consolidate this
  542. // with the configuration api.Client uses.
  543. const controlSiloAddress = `http://127.0.0.1:${CONTROL_SILO_PORT}`;
  544. controlSiloProxy = {
  545. '/auth/**': controlSiloAddress,
  546. '/account/**': controlSiloAddress,
  547. '/api/0/users/**': controlSiloAddress,
  548. '/api/0/api-tokens/**': controlSiloAddress,
  549. '/api/0/sentry-apps/**': controlSiloAddress,
  550. '/api/0/organizations/*/audit-logs/**': controlSiloAddress,
  551. '/api/0/organizations/*/broadcasts/**': controlSiloAddress,
  552. '/api/0/organizations/*/integrations/**': controlSiloAddress,
  553. '/api/0/organizations/*/config/integrations/**': controlSiloAddress,
  554. '/api/0/organizations/*/sentry-apps/**': controlSiloAddress,
  555. '/api/0/organizations/*/sentry-app-installations/**': controlSiloAddress,
  556. '/api/0/api-authorizations/**': controlSiloAddress,
  557. '/api/0/api-applications/**': controlSiloAddress,
  558. '/api/0/doc-integrations/**': controlSiloAddress,
  559. '/api/0/assistant/**': controlSiloAddress,
  560. };
  561. }
  562. appConfig.devServer = {
  563. ...appConfig.devServer,
  564. static: {
  565. ...(appConfig.devServer.static as object),
  566. publicPath: '/_static/dist/sentry',
  567. },
  568. // syntax for matching is using https://www.npmjs.com/package/micromatch
  569. proxy: {
  570. ...controlSiloProxy,
  571. '/api/store/**': relayAddress,
  572. '/api/{1..9}*({0..9})/**': relayAddress,
  573. '/api/0/relays/outcomes/': relayAddress,
  574. '!/_static/dist/sentry/**': backendAddress,
  575. },
  576. };
  577. appConfig.output!.publicPath = '/_static/dist/sentry/';
  578. }
  579. }
  580. // XXX(epurkhiser): Sentry (development) can be run in an experimental
  581. // pure-SPA mode, where ONLY /api* requests are proxied directly to the API
  582. // backend (in this case, sentry.io), otherwise ALL requests are rewritten
  583. // to a development index.html -- thus, completely separating the frontend
  584. // from serving any pages through the backend.
  585. //
  586. // THIS IS EXPERIMENTAL and has limitations (e.g. you can't use SSO)
  587. //
  588. // Various sentry pages still rely on django to serve html views.
  589. if (IS_UI_DEV_ONLY) {
  590. // XXX: If you change this also change its sibiling in:
  591. // - static/index.ejs
  592. // - static/app/utils/extractSlug.tsx
  593. const KNOWN_DOMAINS =
  594. /(?:\.?)((?:localhost|dev\.getsentry\.net|sentry\.dev)(?:\:\d*)?)$/;
  595. const extractSlug = (hostname: string) => {
  596. const match = hostname.match(KNOWN_DOMAINS);
  597. if (!match) {
  598. return null;
  599. }
  600. const [
  601. matchedExpression, // Expression includes optional leading `.`
  602. ] = match;
  603. const [slug] = hostname.replace(matchedExpression, '').split('.');
  604. return slug;
  605. };
  606. // Try and load certificates from mkcert if available. Use $ yarn mkcert-localhost
  607. const certPath = path.join(__dirname, 'config');
  608. const httpsOptions = !fs.existsSync(path.join(certPath, 'localhost.pem'))
  609. ? {}
  610. : {
  611. key: fs.readFileSync(path.join(certPath, 'localhost-key.pem')),
  612. cert: fs.readFileSync(path.join(certPath, 'localhost.pem')),
  613. };
  614. appConfig.devServer = {
  615. ...appConfig.devServer,
  616. compress: true,
  617. server: {
  618. type: 'https',
  619. options: httpsOptions,
  620. },
  621. headers: {
  622. 'Document-Policy': 'js-profiling',
  623. },
  624. static: {
  625. publicPath: '/_assets/',
  626. },
  627. proxy: [
  628. {
  629. context: ['/api/', '/avatar/', '/organization-avatar/', '/extensions/'],
  630. target: 'https://sentry.io',
  631. secure: false,
  632. changeOrigin: true,
  633. headers: {
  634. Referer: 'https://sentry.io/',
  635. 'Document-Policy': 'js-profiling',
  636. },
  637. cookieDomainRewrite: {'.sentry.io': 'localhost'},
  638. router: ({hostname}) => {
  639. const orgSlug = extractSlug(hostname);
  640. return orgSlug ? `https://${orgSlug}.sentry.io` : 'https://sentry.io';
  641. },
  642. },
  643. ],
  644. historyApiFallback: {
  645. rewrites: [{from: /^\/.*$/, to: '/_assets/index.html'}],
  646. },
  647. };
  648. appConfig.optimization = {
  649. runtimeChunk: 'single',
  650. };
  651. }
  652. if (IS_UI_DEV_ONLY || SENTRY_EXPERIMENTAL_SPA) {
  653. appConfig.output!.publicPath = '/_assets/';
  654. /**
  655. * Generate a index.html file used for running the app in pure client mode.
  656. * This is currently used for PR deploy previews, where only the frontend
  657. * is deployed.
  658. */
  659. const HtmlWebpackPlugin = require('html-webpack-plugin');
  660. appConfig.plugins?.push(
  661. new HtmlWebpackPlugin({
  662. // Local dev vs vercel slightly differs...
  663. ...(IS_UI_DEV_ONLY
  664. ? {devServer: `https://127.0.0.1:${SENTRY_WEBPACK_PROXY_PORT}`}
  665. : {}),
  666. favicon: path.resolve(sentryDjangoAppPath, 'images', 'favicon_dev.png'),
  667. template: path.resolve(staticPrefix, 'index.ejs'),
  668. mobile: true,
  669. excludeChunks: ['pipeline'],
  670. title: 'Sentry',
  671. window: {
  672. __SENTRY_DEV_UI: true,
  673. },
  674. })
  675. );
  676. }
  677. const minificationPlugins = [
  678. // This compression-webpack-plugin generates pre-compressed files
  679. // ending in .gz, to be picked up and served by our internal static media
  680. // server as well as nginx when paired with the gzip_static module.
  681. //
  682. // TODO(ts): The current @types/compression-webpack-plugin is still targeting
  683. // webpack@4, for now we just as any it.
  684. new CompressionPlugin({
  685. algorithm: 'gzip',
  686. test: /\.(js|map|css|svg|html|txt|ico|eot|ttf)$/,
  687. }) as any,
  688. // NOTE: In production mode webpack will automatically minify javascript
  689. // using the TerserWebpackPlugin.
  690. ];
  691. if (IS_PRODUCTION) {
  692. // NOTE: can't do plugins.push(Array) because webpack/webpack#2217
  693. minificationPlugins.forEach(plugin => appConfig.plugins?.push(plugin));
  694. }
  695. // Cache webpack builds
  696. if (env.WEBPACK_CACHE_PATH) {
  697. appConfig.cache = {
  698. type: 'filesystem',
  699. cacheLocation: path.resolve(__dirname, env.WEBPACK_CACHE_PATH),
  700. buildDependencies: {
  701. // This makes all dependencies of this file - build dependencies
  702. config: [__filename],
  703. // By default webpack and loaders are build dependencies
  704. },
  705. };
  706. }
  707. export default appConfig;