Storybooks for commit 314dfad7012feaf1281b433c02080ee6ebf02a7e

Date
4/17/2026, 1:56:35 AM 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.