Storybooks for commit 63b178a8a3d37a239e55d08266c49193f56acd1a

Date
5/5/2026, 11:38:10 PM UTC
Summary
fix(content-server): Add explicit webpack alias for @fxa/shared/sentry-utils
Description
Because:
- Even with TsconfigPathsPlugin configured against tsconfig.base.json,
  webpack in content-server was emitting webpackMissingModule for
  @fxa/shared/sentry-utils — the one new path import from app-side code
  (app/scripts/lib/sentry.js). This surfaced as a pageError at runtime
  ("Cannot find module '@fxa/shared/sentry-utils'") and broke the
  app.bundle.js initialization path, causing the cookiesDisabled
  Playwright test to hang waiting for the redirect to /cookies_disabled.

This commit:
- Adds a direct resolve.alias entry for @fxa/shared/sentry-utils pointing
  at libs/shared/sentry-utils/src/index.ts, mirroring the existing
  @fxa/vendored aliases.