react-email 4.0.0-alpha.0 → 4.0.0-alpha.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (92) hide show
  1. package/CHANGELOG.md +38 -0
  2. package/dist/cli/index.js +10 -10
  3. package/dist/cli/index.mjs +10 -13
  4. package/dist/preview/.next/BUILD_ID +1 -1
  5. package/dist/preview/.next/app-build-manifest.json +19 -19
  6. package/dist/preview/.next/app-path-routes-manifest.json +1 -1
  7. package/dist/preview/.next/build-manifest.json +6 -6
  8. package/dist/preview/.next/cache/.rscinfo +1 -1
  9. package/dist/preview/.next/cache/webpack/client-production/0.pack +0 -0
  10. package/dist/preview/.next/cache/webpack/client-production/index.pack +0 -0
  11. package/dist/preview/.next/cache/webpack/edge-server-production/index.pack +0 -0
  12. package/dist/preview/.next/cache/webpack/server-production/0.pack +0 -0
  13. package/dist/preview/.next/cache/webpack/server-production/index.pack +0 -0
  14. package/dist/preview/.next/next-minimal-server.js.nft.json +1 -1
  15. package/dist/preview/.next/next-server.js.nft.json +1 -1
  16. package/dist/preview/.next/prerender-manifest.json +1 -1
  17. package/dist/preview/.next/required-server-files.json +1 -1
  18. package/dist/preview/.next/server/app/_not-found/page.js +1 -1
  19. package/dist/preview/.next/server/app/_not-found/page_client-reference-manifest.js +1 -1
  20. package/dist/preview/.next/server/app/favicon.ico/route.js +1 -1
  21. package/dist/preview/.next/server/app/page.js +1 -1
  22. package/dist/preview/.next/server/app/page.js.nft.json +1 -1
  23. package/dist/preview/.next/server/app/page_client-reference-manifest.js +1 -1
  24. package/dist/preview/.next/server/app/preview/[...slug]/page.js +6 -6
  25. package/dist/preview/.next/server/app/preview/[...slug]/page.js.nft.json +1 -1
  26. package/dist/preview/.next/server/app/preview/[...slug]/page_client-reference-manifest.js +1 -1
  27. package/dist/preview/.next/server/app-paths-manifest.json +1 -1
  28. package/dist/preview/.next/server/chunks/196.js +2 -2
  29. package/dist/preview/.next/server/chunks/590.js +1 -0
  30. package/dist/preview/.next/server/chunks/631.js +2 -2
  31. package/dist/preview/.next/server/chunks/734.js +15 -0
  32. package/dist/preview/.next/server/middleware-build-manifest.js +1 -1
  33. package/dist/preview/.next/server/next-font-manifest.js +1 -1
  34. package/dist/preview/.next/server/next-font-manifest.json +1 -1
  35. package/dist/preview/.next/server/pages/500.html +1 -1
  36. package/dist/preview/.next/server/server-reference-manifest.js +1 -1
  37. package/dist/preview/.next/server/server-reference-manifest.json +1 -1
  38. package/dist/preview/.next/static/chunks/285-dbf6306a0d45c33d.js +1 -0
  39. package/dist/preview/.next/static/chunks/490-d26ba2019ccd4d2f.js +1 -0
  40. package/dist/preview/.next/static/chunks/603-36207c8905355e23.js +1 -0
  41. package/dist/preview/.next/static/chunks/afa401a5-9ebf2515b1397993.js +6 -0
  42. package/dist/preview/.next/static/chunks/app/layout-b13c19549e2d3e57.js +1 -0
  43. package/dist/preview/.next/static/chunks/app/page-8f366f3c14282f33.js +1 -0
  44. package/dist/preview/.next/static/chunks/app/preview/[...slug]/page-9906dc842681db05.js +1 -0
  45. package/dist/preview/.next/static/chunks/main-app-d1b0aa870bcfb13e.js +1 -0
  46. package/dist/preview/.next/static/chunks/webpack-9255716c9496e606.js +1 -0
  47. package/dist/preview/.next/static/css/b60917edfd15a496.css +3 -0
  48. package/dist/preview/.next/trace +22 -21
  49. package/dist/preview/.next/types/app/layout.ts +1 -1
  50. package/dist/preview/.next/types/app/preview/[...slug]/page.ts +1 -1
  51. package/module-punycode.d.ts +3 -0
  52. package/package.json +9 -9
  53. package/src/actions/email-validation/check-images.spec.tsx +89 -0
  54. package/src/actions/email-validation/check-images.ts +141 -0
  55. package/src/actions/email-validation/check-links.spec.tsx +91 -0
  56. package/src/actions/email-validation/check-links.ts +18 -15
  57. package/src/app/preview/[...slug]/preview.tsx +105 -19
  58. package/src/components/button.tsx +47 -36
  59. package/src/components/code-snippet.tsx +0 -2
  60. package/src/components/icons/icon-image.tsx +19 -0
  61. package/src/components/logo.tsx +0 -2
  62. package/src/components/resizable-wrapper.tsx +176 -0
  63. package/src/components/shell.tsx +17 -3
  64. package/src/components/sidebar/checking-results.tsx +150 -0
  65. package/src/components/sidebar/file-tree-directory-children.tsx +3 -6
  66. package/src/components/sidebar/image-checker.tsx +161 -0
  67. package/src/components/sidebar/link-checker.tsx +83 -223
  68. package/src/components/sidebar/sidebar.tsx +75 -27
  69. package/src/components/topbar/active-view-toggle-group.tsx +86 -0
  70. package/src/components/topbar/view-size-controls.tsx +247 -0
  71. package/src/components/topbar.tsx +50 -125
  72. package/src/hooks/use-clamped-state.ts +24 -0
  73. package/src/hooks/use-icon-animation.ts +4 -7
  74. package/src/utils/static-node-modules-for-vm.ts +2 -1
  75. package/tailwind.config.ts +12 -17
  76. package/tsconfig.json +6 -2
  77. package/tsconfig.test.json +8 -0
  78. package/vitest.config.ts +13 -0
  79. package/dist/preview/.next/server/chunks/273.js +0 -1
  80. package/dist/preview/.next/server/chunks/594.js +0 -10
  81. package/dist/preview/.next/static/chunks/18b16e15-6ad9b58e10ff8891.js +0 -1
  82. package/dist/preview/.next/static/chunks/490-48951f2e19ae3aef.js +0 -1
  83. package/dist/preview/.next/static/chunks/600-2e2ca4c8bbd97b61.js +0 -1
  84. package/dist/preview/.next/static/chunks/860-38d96c8819ba6f19.js +0 -1
  85. package/dist/preview/.next/static/chunks/app/layout-490964e2c3604d33.js +0 -1
  86. package/dist/preview/.next/static/chunks/app/page-d2432acd08db8fc0.js +0 -1
  87. package/dist/preview/.next/static/chunks/app/preview/[...slug]/page-f4e211e00c026401.js +0 -1
  88. package/dist/preview/.next/static/chunks/main-app-cd104297c6bcc87e.js +0 -1
  89. package/dist/preview/.next/static/chunks/webpack-7bf1ffb05f5540be.js +0 -1
  90. package/dist/preview/.next/static/css/5e0736cafbb392a9.css +0 -3
  91. /package/dist/preview/.next/static/{fZaiKz58wDr55pxLu9uHa → ll_lhpCErxdDFU8uF5Ujy}/_buildManifest.js +0 -0
  92. /package/dist/preview/.next/static/{fZaiKz58wDr55pxLu9uHa → ll_lhpCErxdDFU8uF5Ujy}/_ssgManifest.js +0 -0
@@ -1 +1 @@
1
- {"version":1,"files":["../../../../../../../node_modules/.pnpm/@esbuild+linux-x64@0.19.11/node_modules/@esbuild/linux-x64/bin/esbuild","../../../../../../../node_modules/.pnpm/@esbuild+linux-x64@0.19.11/node_modules/@esbuild/linux-x64/package.json","../../../../../../../node_modules/.pnpm/esbuild@0.19.11/node_modules/@esbuild/linux-x64","../../../../../../../node_modules/.pnpm/esbuild@0.19.11/node_modules/esbuild/lib/main.js","../../../../../../../node_modules/.pnpm/esbuild@0.19.11/node_modules/esbuild/package.json","../../../../../../../node_modules/.pnpm/next@15.1.2_@babel+core@7.24.5_react-dom@19.0.0_react@19.0.0__react@19.0.0/node_modules/next/dist/compiled/@opentelemetry/api/index.js","../../../../../../../node_modules/.pnpm/next@15.1.2_@babel+core@7.24.5_react-dom@19.0.0_react@19.0.0__react@19.0.0/node_modules/next/dist/compiled/@opentelemetry/api/package.json","../../../../../../../node_modules/.pnpm/next@15.1.2_@babel+core@7.24.5_react-dom@19.0.0_react@19.0.0__react@19.0.0/node_modules/next/dist/compiled/next-server/app-page.runtime.prod.js","../../../../../../../node_modules/.pnpm/next@15.1.2_@babel+core@7.24.5_react-dom@19.0.0_react@19.0.0__react@19.0.0/node_modules/next/dist/server/app-render/action-async-storage-instance.js","../../../../../../../node_modules/.pnpm/next@15.1.2_@babel+core@7.24.5_react-dom@19.0.0_react@19.0.0__react@19.0.0/node_modules/next/dist/server/app-render/action-async-storage.external.js","../../../../../../../node_modules/.pnpm/next@15.1.2_@babel+core@7.24.5_react-dom@19.0.0_react@19.0.0__react@19.0.0/node_modules/next/dist/server/app-render/after-task-async-storage-instance.js","../../../../../../../node_modules/.pnpm/next@15.1.2_@babel+core@7.24.5_react-dom@19.0.0_react@19.0.0__react@19.0.0/node_modules/next/dist/server/app-render/after-task-async-storage.external.js","../../../../../../../node_modules/.pnpm/next@15.1.2_@babel+core@7.24.5_react-dom@19.0.0_react@19.0.0__react@19.0.0/node_modules/next/dist/server/app-render/async-local-storage.js","../../../../../../../node_modules/.pnpm/next@15.1.2_@babel+core@7.24.5_react-dom@19.0.0_react@19.0.0__react@19.0.0/node_modules/next/dist/server/app-render/clean-async-snapshot-instance.js","../../../../../../../node_modules/.pnpm/next@15.1.2_@babel+core@7.24.5_react-dom@19.0.0_react@19.0.0__react@19.0.0/node_modules/next/dist/server/app-render/clean-async-snapshot.external.js","../../../../../../../node_modules/.pnpm/next@15.1.2_@babel+core@7.24.5_react-dom@19.0.0_react@19.0.0__react@19.0.0/node_modules/next/dist/server/app-render/work-async-storage-instance.js","../../../../../../../node_modules/.pnpm/next@15.1.2_@babel+core@7.24.5_react-dom@19.0.0_react@19.0.0__react@19.0.0/node_modules/next/dist/server/app-render/work-async-storage.external.js","../../../../../../../node_modules/.pnpm/next@15.1.2_@babel+core@7.24.5_react-dom@19.0.0_react@19.0.0__react@19.0.0/node_modules/next/dist/server/app-render/work-unit-async-storage-instance.js","../../../../../../../node_modules/.pnpm/next@15.1.2_@babel+core@7.24.5_react-dom@19.0.0_react@19.0.0__react@19.0.0/node_modules/next/dist/server/app-render/work-unit-async-storage.external.js","../../../../../../../node_modules/.pnpm/next@15.1.2_@babel+core@7.24.5_react-dom@19.0.0_react@19.0.0__react@19.0.0/node_modules/next/dist/server/lib/trace/constants.js","../../../../../../../node_modules/.pnpm/next@15.1.2_@babel+core@7.24.5_react-dom@19.0.0_react@19.0.0__react@19.0.0/node_modules/next/dist/server/lib/trace/tracer.js","../../../../../../../node_modules/.pnpm/next@15.1.2_@babel+core@7.24.5_react-dom@19.0.0_react@19.0.0__react@19.0.0/node_modules/next/dist/shared/lib/is-thenable.js","../../../../../../../node_modules/.pnpm/next@15.1.2_@babel+core@7.24.5_react-dom@19.0.0_react@19.0.0__react@19.0.0/node_modules/next/package.json","../../../../../../../package.json","../../../../../node_modules/esbuild","../../../../../node_modules/next","../../../../../package.json","../../../../package.json","../../../chunks/196.js","../../../chunks/273.js","../../../chunks/300.js","../../../chunks/594.js","../../../webpack-runtime.js","page_client-reference-manifest.js"]}
1
+ {"version":1,"files":["../../../../../../../node_modules/.pnpm/@esbuild+linux-x64@0.23.0/node_modules/@esbuild/linux-x64/bin/esbuild","../../../../../../../node_modules/.pnpm/@esbuild+linux-x64@0.23.0/node_modules/@esbuild/linux-x64/package.json","../../../../../../../node_modules/.pnpm/esbuild@0.23.0/node_modules/@esbuild/linux-x64","../../../../../../../node_modules/.pnpm/esbuild@0.23.0/node_modules/esbuild/lib/main.js","../../../../../../../node_modules/.pnpm/esbuild@0.23.0/node_modules/esbuild/package.json","../../../../../../../node_modules/.pnpm/next@15.1.2_@babel+core@7.24.5_react-dom@19.0.0_react@19.0.0__react@19.0.0/node_modules/next/dist/compiled/@opentelemetry/api/index.js","../../../../../../../node_modules/.pnpm/next@15.1.2_@babel+core@7.24.5_react-dom@19.0.0_react@19.0.0__react@19.0.0/node_modules/next/dist/compiled/@opentelemetry/api/package.json","../../../../../../../node_modules/.pnpm/next@15.1.2_@babel+core@7.24.5_react-dom@19.0.0_react@19.0.0__react@19.0.0/node_modules/next/dist/compiled/next-server/app-page.runtime.prod.js","../../../../../../../node_modules/.pnpm/next@15.1.2_@babel+core@7.24.5_react-dom@19.0.0_react@19.0.0__react@19.0.0/node_modules/next/dist/server/app-render/action-async-storage-instance.js","../../../../../../../node_modules/.pnpm/next@15.1.2_@babel+core@7.24.5_react-dom@19.0.0_react@19.0.0__react@19.0.0/node_modules/next/dist/server/app-render/action-async-storage.external.js","../../../../../../../node_modules/.pnpm/next@15.1.2_@babel+core@7.24.5_react-dom@19.0.0_react@19.0.0__react@19.0.0/node_modules/next/dist/server/app-render/after-task-async-storage-instance.js","../../../../../../../node_modules/.pnpm/next@15.1.2_@babel+core@7.24.5_react-dom@19.0.0_react@19.0.0__react@19.0.0/node_modules/next/dist/server/app-render/after-task-async-storage.external.js","../../../../../../../node_modules/.pnpm/next@15.1.2_@babel+core@7.24.5_react-dom@19.0.0_react@19.0.0__react@19.0.0/node_modules/next/dist/server/app-render/async-local-storage.js","../../../../../../../node_modules/.pnpm/next@15.1.2_@babel+core@7.24.5_react-dom@19.0.0_react@19.0.0__react@19.0.0/node_modules/next/dist/server/app-render/clean-async-snapshot-instance.js","../../../../../../../node_modules/.pnpm/next@15.1.2_@babel+core@7.24.5_react-dom@19.0.0_react@19.0.0__react@19.0.0/node_modules/next/dist/server/app-render/clean-async-snapshot.external.js","../../../../../../../node_modules/.pnpm/next@15.1.2_@babel+core@7.24.5_react-dom@19.0.0_react@19.0.0__react@19.0.0/node_modules/next/dist/server/app-render/work-async-storage-instance.js","../../../../../../../node_modules/.pnpm/next@15.1.2_@babel+core@7.24.5_react-dom@19.0.0_react@19.0.0__react@19.0.0/node_modules/next/dist/server/app-render/work-async-storage.external.js","../../../../../../../node_modules/.pnpm/next@15.1.2_@babel+core@7.24.5_react-dom@19.0.0_react@19.0.0__react@19.0.0/node_modules/next/dist/server/app-render/work-unit-async-storage-instance.js","../../../../../../../node_modules/.pnpm/next@15.1.2_@babel+core@7.24.5_react-dom@19.0.0_react@19.0.0__react@19.0.0/node_modules/next/dist/server/app-render/work-unit-async-storage.external.js","../../../../../../../node_modules/.pnpm/next@15.1.2_@babel+core@7.24.5_react-dom@19.0.0_react@19.0.0__react@19.0.0/node_modules/next/dist/server/lib/trace/constants.js","../../../../../../../node_modules/.pnpm/next@15.1.2_@babel+core@7.24.5_react-dom@19.0.0_react@19.0.0__react@19.0.0/node_modules/next/dist/server/lib/trace/tracer.js","../../../../../../../node_modules/.pnpm/next@15.1.2_@babel+core@7.24.5_react-dom@19.0.0_react@19.0.0__react@19.0.0/node_modules/next/dist/shared/lib/is-thenable.js","../../../../../../../node_modules/.pnpm/next@15.1.2_@babel+core@7.24.5_react-dom@19.0.0_react@19.0.0__react@19.0.0/node_modules/next/package.json","../../../../../../../package.json","../../../../../node_modules/esbuild","../../../../../node_modules/next","../../../../../package.json","../../../../package.json","../../../chunks/196.js","../../../chunks/300.js","../../../chunks/590.js","../../../chunks/734.js","../../../webpack-runtime.js","page_client-reference-manifest.js"]}
@@ -1 +1 @@
1
- globalThis.__RSC_MANIFEST=(globalThis.__RSC_MANIFEST||{});globalThis.__RSC_MANIFEST["/preview/[...slug]/page"]={"moduleLoading":{"prefix":"/_next/","crossOrigin":null},"ssrModuleMapping":{"1182":{"*":{"id":"18196","name":"*","chunks":[],"async":false}},"3035":{"*":{"id":"37737","name":"*","chunks":[],"async":false}},"3935":{"*":{"id":"17189","name":"*","chunks":[],"async":false}},"3960":{"*":{"id":"70644","name":"*","chunks":[],"async":false}},"4312":{"*":{"id":"86644","name":"*","chunks":[],"async":false}},"4657":{"*":{"id":"73545","name":"*","chunks":[],"async":false}},"6307":{"*":{"id":"51939","name":"*","chunks":[],"async":false}},"6587":{"*":{"id":"5393","name":"*","chunks":[],"async":false}},"6730":{"*":{"id":"93328","name":"*","chunks":[],"async":false}},"8322":{"*":{"id":"90898","name":"*","chunks":[],"async":false}},"9586":{"*":{"id":"88930","name":"*","chunks":[],"async":false}},"9658":{"*":{"id":"76272","name":"*","chunks":[],"async":false}},"9693":{"*":{"id":"19553","name":"*","chunks":[],"async":false}},"9698":{"*":{"id":"74933","name":"*","chunks":[],"async":false}},"9747":{"*":{"id":"21986","name":"*","chunks":[],"async":false}}},"edgeSSRModuleMapping":{},"clientModules":{"/home/gabriel/Projects/Resend/react-email.git/tertiary/node_modules/.pnpm/next@15.1.2_@babel+core@7.24.5_react-dom@19.0.0_react@19.0.0__react@19.0.0/node_modules/next/dist/client/components/client-page.js":{"id":6587,"name":"*","chunks":[],"async":false},"/home/gabriel/Projects/Resend/react-email.git/tertiary/node_modules/.pnpm/next@15.1.2_@babel+core@7.24.5_react-dom@19.0.0_react@19.0.0__react@19.0.0/node_modules/next/dist/esm/client/components/client-page.js":{"id":6587,"name":"*","chunks":[],"async":false},"/home/gabriel/Projects/Resend/react-email.git/tertiary/node_modules/.pnpm/next@15.1.2_@babel+core@7.24.5_react-dom@19.0.0_react@19.0.0__react@19.0.0/node_modules/next/dist/client/components/client-segment.js":{"id":4657,"name":"*","chunks":[],"async":false},"/home/gabriel/Projects/Resend/react-email.git/tertiary/node_modules/.pnpm/next@15.1.2_@babel+core@7.24.5_react-dom@19.0.0_react@19.0.0__react@19.0.0/node_modules/next/dist/esm/client/components/client-segment.js":{"id":4657,"name":"*","chunks":[],"async":false},"/home/gabriel/Projects/Resend/react-email.git/tertiary/node_modules/.pnpm/next@15.1.2_@babel+core@7.24.5_react-dom@19.0.0_react@19.0.0__react@19.0.0/node_modules/next/dist/client/components/error-boundary.js":{"id":9693,"name":"*","chunks":[],"async":false},"/home/gabriel/Projects/Resend/react-email.git/tertiary/node_modules/.pnpm/next@15.1.2_@babel+core@7.24.5_react-dom@19.0.0_react@19.0.0__react@19.0.0/node_modules/next/dist/esm/client/components/error-boundary.js":{"id":9693,"name":"*","chunks":[],"async":false},"/home/gabriel/Projects/Resend/react-email.git/tertiary/node_modules/.pnpm/next@15.1.2_@babel+core@7.24.5_react-dom@19.0.0_react@19.0.0__react@19.0.0/node_modules/next/dist/client/components/http-access-fallback/error-boundary.js":{"id":6730,"name":"*","chunks":[],"async":false},"/home/gabriel/Projects/Resend/react-email.git/tertiary/node_modules/.pnpm/next@15.1.2_@babel+core@7.24.5_react-dom@19.0.0_react@19.0.0__react@19.0.0/node_modules/next/dist/esm/client/components/http-access-fallback/error-boundary.js":{"id":6730,"name":"*","chunks":[],"async":false},"/home/gabriel/Projects/Resend/react-email.git/tertiary/node_modules/.pnpm/next@15.1.2_@babel+core@7.24.5_react-dom@19.0.0_react@19.0.0__react@19.0.0/node_modules/next/dist/client/components/layout-router.js":{"id":9658,"name":"*","chunks":[],"async":false},"/home/gabriel/Projects/Resend/react-email.git/tertiary/node_modules/.pnpm/next@15.1.2_@babel+core@7.24.5_react-dom@19.0.0_react@19.0.0__react@19.0.0/node_modules/next/dist/esm/client/components/layout-router.js":{"id":9658,"name":"*","chunks":[],"async":false},"/home/gabriel/Projects/Resend/react-email.git/tertiary/node_modules/.pnpm/next@15.1.2_@babel+core@7.24.5_react-dom@19.0.0_react@19.0.0__react@19.0.0/node_modules/next/dist/client/components/render-from-template-context.js":{"id":3960,"name":"*","chunks":[],"async":false},"/home/gabriel/Projects/Resend/react-email.git/tertiary/node_modules/.pnpm/next@15.1.2_@babel+core@7.24.5_react-dom@19.0.0_react@19.0.0__react@19.0.0/node_modules/next/dist/esm/client/components/render-from-template-context.js":{"id":3960,"name":"*","chunks":[],"async":false},"/home/gabriel/Projects/Resend/react-email.git/tertiary/node_modules/.pnpm/next@15.1.2_@babel+core@7.24.5_react-dom@19.0.0_react@19.0.0__react@19.0.0/node_modules/next/dist/lib/metadata/metadata-boundary.js":{"id":6307,"name":"*","chunks":[],"async":false},"/home/gabriel/Projects/Resend/react-email.git/tertiary/node_modules/.pnpm/next@15.1.2_@babel+core@7.24.5_react-dom@19.0.0_react@19.0.0__react@19.0.0/node_modules/next/dist/esm/lib/metadata/metadata-boundary.js":{"id":6307,"name":"*","chunks":[],"async":false},"/home/gabriel/Projects/Resend/react-email.git/tertiary/packages/react-email/src/app/globals.css":{"id":3103,"name":"*","chunks":["447","static/chunks/447-886131c35ca42b91.js","177","static/chunks/app/layout-490964e2c3604d33.js"],"async":false},"/home/gabriel/Projects/Resend/react-email.git/tertiary/node_modules/.pnpm/next@15.1.2_@babel+core@7.24.5_react-dom@19.0.0_react@19.0.0__react@19.0.0/node_modules/next/font/google/target.css?{\"path\":\"src/app/inter.ts\",\"import\":\"Inter\",\"arguments\":[{\"subsets\":[\"latin\"],\"variable\":\"--font-inter\",\"display\":\"swap\"}],\"variableName\":\"inter\"}":{"id":1359,"name":"*","chunks":["447","static/chunks/447-886131c35ca42b91.js","177","static/chunks/app/layout-490964e2c3604d33.js"],"async":false},"/home/gabriel/Projects/Resend/react-email.git/tertiary/packages/react-email/src/contexts/emails.tsx":{"id":1182,"name":"*","chunks":["447","static/chunks/447-886131c35ca42b91.js","177","static/chunks/app/layout-490964e2c3604d33.js"],"async":false},"/home/gabriel/Projects/Resend/react-email.git/tertiary/node_modules/.pnpm/next@15.1.2_@babel+core@7.24.5_react-dom@19.0.0_react@19.0.0__react@19.0.0/node_modules/next/dist/client/app-dir/link.js":{"id":3935,"name":"*","chunks":["150","static/chunks/18b16e15-6ad9b58e10ff8891.js","447","static/chunks/447-886131c35ca42b91.js","600","static/chunks/600-2e2ca4c8bbd97b61.js","860","static/chunks/860-38d96c8819ba6f19.js","490","static/chunks/490-48951f2e19ae3aef.js","719","static/chunks/app/preview/%5B...slug%5D/page-f4e211e00c026401.js"],"async":false},"/home/gabriel/Projects/Resend/react-email.git/tertiary/node_modules/.pnpm/next@15.1.2_@babel+core@7.24.5_react-dom@19.0.0_react@19.0.0__react@19.0.0/node_modules/next/dist/esm/client/app-dir/link.js":{"id":3935,"name":"*","chunks":["150","static/chunks/18b16e15-6ad9b58e10ff8891.js","447","static/chunks/447-886131c35ca42b91.js","600","static/chunks/600-2e2ca4c8bbd97b61.js","860","static/chunks/860-38d96c8819ba6f19.js","490","static/chunks/490-48951f2e19ae3aef.js","719","static/chunks/app/preview/%5B...slug%5D/page-f4e211e00c026401.js"],"async":false},"/home/gabriel/Projects/Resend/react-email.git/tertiary/node_modules/.pnpm/next@15.1.2_@babel+core@7.24.5_react-dom@19.0.0_react@19.0.0__react@19.0.0/node_modules/next/dist/client/image-component.js":{"id":4312,"name":"*","chunks":["150","static/chunks/18b16e15-6ad9b58e10ff8891.js","447","static/chunks/447-886131c35ca42b91.js","600","static/chunks/600-2e2ca4c8bbd97b61.js","860","static/chunks/860-38d96c8819ba6f19.js","490","static/chunks/490-48951f2e19ae3aef.js","719","static/chunks/app/preview/%5B...slug%5D/page-f4e211e00c026401.js"],"async":false},"/home/gabriel/Projects/Resend/react-email.git/tertiary/node_modules/.pnpm/next@15.1.2_@babel+core@7.24.5_react-dom@19.0.0_react@19.0.0__react@19.0.0/node_modules/next/dist/esm/client/image-component.js":{"id":4312,"name":"*","chunks":["150","static/chunks/18b16e15-6ad9b58e10ff8891.js","447","static/chunks/447-886131c35ca42b91.js","600","static/chunks/600-2e2ca4c8bbd97b61.js","860","static/chunks/860-38d96c8819ba6f19.js","490","static/chunks/490-48951f2e19ae3aef.js","719","static/chunks/app/preview/%5B...slug%5D/page-f4e211e00c026401.js"],"async":false},"/home/gabriel/Projects/Resend/react-email.git/tertiary/packages/react-email/src/app/logo.png":{"id":9747,"name":"*","chunks":["150","static/chunks/18b16e15-6ad9b58e10ff8891.js","447","static/chunks/447-886131c35ca42b91.js","600","static/chunks/600-2e2ca4c8bbd97b61.js","860","static/chunks/860-38d96c8819ba6f19.js","490","static/chunks/490-48951f2e19ae3aef.js","719","static/chunks/app/preview/%5B...slug%5D/page-f4e211e00c026401.js"],"async":false},"/home/gabriel/Projects/Resend/react-email.git/tertiary/packages/react-email/src/components/shell.tsx":{"id":8322,"name":"*","chunks":["150","static/chunks/18b16e15-6ad9b58e10ff8891.js","447","static/chunks/447-886131c35ca42b91.js","600","static/chunks/600-2e2ca4c8bbd97b61.js","860","static/chunks/860-38d96c8819ba6f19.js","490","static/chunks/490-48951f2e19ae3aef.js","719","static/chunks/app/preview/%5B...slug%5D/page-f4e211e00c026401.js"],"async":false},"/home/gabriel/Projects/Resend/react-email.git/tertiary/packages/react-email/src/components/sidebar/sidebar.tsx":{"id":9698,"name":"*","chunks":["150","static/chunks/18b16e15-6ad9b58e10ff8891.js","447","static/chunks/447-886131c35ca42b91.js","600","static/chunks/600-2e2ca4c8bbd97b61.js","860","static/chunks/860-38d96c8819ba6f19.js","490","static/chunks/490-48951f2e19ae3aef.js","719","static/chunks/app/preview/%5B...slug%5D/page-f4e211e00c026401.js"],"async":false},"/home/gabriel/Projects/Resend/react-email.git/tertiary/packages/react-email/src/components/topbar.tsx":{"id":3035,"name":"*","chunks":["150","static/chunks/18b16e15-6ad9b58e10ff8891.js","447","static/chunks/447-886131c35ca42b91.js","600","static/chunks/600-2e2ca4c8bbd97b61.js","860","static/chunks/860-38d96c8819ba6f19.js","490","static/chunks/490-48951f2e19ae3aef.js","719","static/chunks/app/preview/%5B...slug%5D/page-f4e211e00c026401.js"],"async":false},"/home/gabriel/Projects/Resend/react-email.git/tertiary/packages/react-email/src/app/preview/[...slug]/preview.tsx":{"id":9586,"name":"*","chunks":["150","static/chunks/18b16e15-6ad9b58e10ff8891.js","447","static/chunks/447-886131c35ca42b91.js","600","static/chunks/600-2e2ca4c8bbd97b61.js","860","static/chunks/860-38d96c8819ba6f19.js","490","static/chunks/490-48951f2e19ae3aef.js","719","static/chunks/app/preview/%5B...slug%5D/page-f4e211e00c026401.js"],"async":false}},"entryCSSFiles":{"/home/gabriel/Projects/Resend/react-email.git/tertiary/packages/react-email/src/":[],"/home/gabriel/Projects/Resend/react-email.git/tertiary/packages/react-email/src/app/layout":[{"inlined":false,"path":"static/css/5e0736cafbb392a9.css"},{"inlined":false,"path":"static/css/ec5d7e66bd3b6cb8.css"}],"/home/gabriel/Projects/Resend/react-email.git/tertiary/packages/react-email/src/app/page":[{"inlined":false,"path":"static/css/ec5d7e66bd3b6cb8.css"}],"/home/gabriel/Projects/Resend/react-email.git/tertiary/packages/react-email/src/app/preview/[...slug]/page":[{"inlined":false,"path":"static/css/ec5d7e66bd3b6cb8.css"}]},"rscModuleMapping":{"1182":{"*":{"id":"68710","name":"*","chunks":[],"async":false}},"3035":{"*":{"id":"8581","name":"*","chunks":[],"async":false}},"3103":{"*":{"id":"38389","name":"*","chunks":[],"async":false}},"3935":{"*":{"id":"25653","name":"*","chunks":[],"async":false}},"3960":{"*":{"id":"98020","name":"*","chunks":[],"async":false}},"4312":{"*":{"id":"49188","name":"*","chunks":[],"async":false}},"4657":{"*":{"id":"19545","name":"*","chunks":[],"async":false}},"6307":{"*":{"id":"27003","name":"*","chunks":[],"async":false}},"6587":{"*":{"id":"64257","name":"*","chunks":[],"async":false}},"6730":{"*":{"id":"72832","name":"*","chunks":[],"async":false}},"8322":{"*":{"id":"61831","name":"*","chunks":[],"async":false}},"9586":{"*":{"id":"3445","name":"*","chunks":[],"async":false}},"9658":{"*":{"id":"44672","name":"*","chunks":[],"async":false}},"9693":{"*":{"id":"20945","name":"*","chunks":[],"async":false}},"9698":{"*":{"id":"52027","name":"*","chunks":[],"async":false}},"9747":{"*":{"id":"81818","name":"*","chunks":[],"async":false}}},"edgeRscModuleMapping":{"3935":{"*":{"id":"17189","name":"*","chunks":[],"async":false}},"3960":{"*":{"id":"70644","name":"*","chunks":[],"async":false}},"4312":{"*":{"id":"86644","name":"*","chunks":[],"async":false}},"4657":{"*":{"id":"73545","name":"*","chunks":[],"async":false}},"6307":{"*":{"id":"51939","name":"*","chunks":[],"async":false}},"6587":{"*":{"id":"5393","name":"*","chunks":[],"async":false}},"6730":{"*":{"id":"93328","name":"*","chunks":[],"async":false}},"9658":{"*":{"id":"76272","name":"*","chunks":[],"async":false}},"9693":{"*":{"id":"19553","name":"*","chunks":[],"async":false}}}}
1
+ globalThis.__RSC_MANIFEST=(globalThis.__RSC_MANIFEST||{});globalThis.__RSC_MANIFEST["/preview/[...slug]/page"]={"moduleLoading":{"prefix":"/_next/","crossOrigin":null},"ssrModuleMapping":{"3935":{"*":{"id":"17189","name":"*","chunks":[],"async":false}},"3960":{"*":{"id":"70644","name":"*","chunks":[],"async":false}},"4024":{"*":{"id":"17797","name":"*","chunks":[],"async":false}},"4289":{"*":{"id":"51390","name":"*","chunks":[],"async":false}},"4312":{"*":{"id":"86644","name":"*","chunks":[],"async":false}},"4657":{"*":{"id":"73545","name":"*","chunks":[],"async":false}},"5791":{"*":{"id":"92967","name":"*","chunks":[],"async":false}},"6307":{"*":{"id":"51939","name":"*","chunks":[],"async":false}},"6587":{"*":{"id":"5393","name":"*","chunks":[],"async":false}},"6730":{"*":{"id":"93328","name":"*","chunks":[],"async":false}},"8322":{"*":{"id":"90898","name":"*","chunks":[],"async":false}},"9122":{"*":{"id":"48481","name":"*","chunks":[],"async":false}},"9328":{"*":{"id":"29641","name":"*","chunks":[],"async":false}},"9658":{"*":{"id":"76272","name":"*","chunks":[],"async":false}},"9693":{"*":{"id":"19553","name":"*","chunks":[],"async":false}},"9747":{"*":{"id":"21986","name":"*","chunks":[],"async":false}}},"edgeSSRModuleMapping":{},"clientModules":{"/home/gabriel/Projects/Resend/react-email.git/chore-1/node_modules/.pnpm/next@15.1.2_@babel+core@7.24.5_react-dom@19.0.0_react@19.0.0__react@19.0.0/node_modules/next/dist/client/components/client-page.js":{"id":6587,"name":"*","chunks":[],"async":false},"/home/gabriel/Projects/Resend/react-email.git/chore-1/node_modules/.pnpm/next@15.1.2_@babel+core@7.24.5_react-dom@19.0.0_react@19.0.0__react@19.0.0/node_modules/next/dist/esm/client/components/client-page.js":{"id":6587,"name":"*","chunks":[],"async":false},"/home/gabriel/Projects/Resend/react-email.git/chore-1/node_modules/.pnpm/next@15.1.2_@babel+core@7.24.5_react-dom@19.0.0_react@19.0.0__react@19.0.0/node_modules/next/dist/client/components/client-segment.js":{"id":4657,"name":"*","chunks":[],"async":false},"/home/gabriel/Projects/Resend/react-email.git/chore-1/node_modules/.pnpm/next@15.1.2_@babel+core@7.24.5_react-dom@19.0.0_react@19.0.0__react@19.0.0/node_modules/next/dist/esm/client/components/client-segment.js":{"id":4657,"name":"*","chunks":[],"async":false},"/home/gabriel/Projects/Resend/react-email.git/chore-1/node_modules/.pnpm/next@15.1.2_@babel+core@7.24.5_react-dom@19.0.0_react@19.0.0__react@19.0.0/node_modules/next/dist/client/components/error-boundary.js":{"id":9693,"name":"*","chunks":[],"async":false},"/home/gabriel/Projects/Resend/react-email.git/chore-1/node_modules/.pnpm/next@15.1.2_@babel+core@7.24.5_react-dom@19.0.0_react@19.0.0__react@19.0.0/node_modules/next/dist/esm/client/components/error-boundary.js":{"id":9693,"name":"*","chunks":[],"async":false},"/home/gabriel/Projects/Resend/react-email.git/chore-1/node_modules/.pnpm/next@15.1.2_@babel+core@7.24.5_react-dom@19.0.0_react@19.0.0__react@19.0.0/node_modules/next/dist/client/components/http-access-fallback/error-boundary.js":{"id":6730,"name":"*","chunks":[],"async":false},"/home/gabriel/Projects/Resend/react-email.git/chore-1/node_modules/.pnpm/next@15.1.2_@babel+core@7.24.5_react-dom@19.0.0_react@19.0.0__react@19.0.0/node_modules/next/dist/esm/client/components/http-access-fallback/error-boundary.js":{"id":6730,"name":"*","chunks":[],"async":false},"/home/gabriel/Projects/Resend/react-email.git/chore-1/node_modules/.pnpm/next@15.1.2_@babel+core@7.24.5_react-dom@19.0.0_react@19.0.0__react@19.0.0/node_modules/next/dist/client/components/layout-router.js":{"id":9658,"name":"*","chunks":[],"async":false},"/home/gabriel/Projects/Resend/react-email.git/chore-1/node_modules/.pnpm/next@15.1.2_@babel+core@7.24.5_react-dom@19.0.0_react@19.0.0__react@19.0.0/node_modules/next/dist/esm/client/components/layout-router.js":{"id":9658,"name":"*","chunks":[],"async":false},"/home/gabriel/Projects/Resend/react-email.git/chore-1/node_modules/.pnpm/next@15.1.2_@babel+core@7.24.5_react-dom@19.0.0_react@19.0.0__react@19.0.0/node_modules/next/dist/client/components/render-from-template-context.js":{"id":3960,"name":"*","chunks":[],"async":false},"/home/gabriel/Projects/Resend/react-email.git/chore-1/node_modules/.pnpm/next@15.1.2_@babel+core@7.24.5_react-dom@19.0.0_react@19.0.0__react@19.0.0/node_modules/next/dist/esm/client/components/render-from-template-context.js":{"id":3960,"name":"*","chunks":[],"async":false},"/home/gabriel/Projects/Resend/react-email.git/chore-1/node_modules/.pnpm/next@15.1.2_@babel+core@7.24.5_react-dom@19.0.0_react@19.0.0__react@19.0.0/node_modules/next/dist/lib/metadata/metadata-boundary.js":{"id":6307,"name":"*","chunks":[],"async":false},"/home/gabriel/Projects/Resend/react-email.git/chore-1/node_modules/.pnpm/next@15.1.2_@babel+core@7.24.5_react-dom@19.0.0_react@19.0.0__react@19.0.0/node_modules/next/dist/esm/lib/metadata/metadata-boundary.js":{"id":6307,"name":"*","chunks":[],"async":false},"/home/gabriel/Projects/Resend/react-email.git/chore-1/packages/react-email/src/app/globals.css":{"id":3103,"name":"*","chunks":["447","static/chunks/447-886131c35ca42b91.js","177","static/chunks/app/layout-b13c19549e2d3e57.js"],"async":false},"/home/gabriel/Projects/Resend/react-email.git/chore-1/node_modules/.pnpm/next@15.1.2_@babel+core@7.24.5_react-dom@19.0.0_react@19.0.0__react@19.0.0/node_modules/next/font/google/target.css?{\"path\":\"src/app/inter.ts\",\"import\":\"Inter\",\"arguments\":[{\"subsets\":[\"latin\"],\"variable\":\"--font-inter\",\"display\":\"swap\"}],\"variableName\":\"inter\"}":{"id":1359,"name":"*","chunks":["447","static/chunks/447-886131c35ca42b91.js","177","static/chunks/app/layout-b13c19549e2d3e57.js"],"async":false},"/home/gabriel/Projects/Resend/react-email.git/chore-1/packages/react-email/src/contexts/emails.tsx":{"id":9328,"name":"*","chunks":["447","static/chunks/447-886131c35ca42b91.js","177","static/chunks/app/layout-b13c19549e2d3e57.js"],"async":false},"/home/gabriel/Projects/Resend/react-email.git/chore-1/node_modules/.pnpm/next@15.1.2_@babel+core@7.24.5_react-dom@19.0.0_react@19.0.0__react@19.0.0/node_modules/next/dist/client/app-dir/link.js":{"id":3935,"name":"*","chunks":["486","static/chunks/afa401a5-9ebf2515b1397993.js","447","static/chunks/447-886131c35ca42b91.js","285","static/chunks/285-dbf6306a0d45c33d.js","603","static/chunks/603-36207c8905355e23.js","490","static/chunks/490-d26ba2019ccd4d2f.js","719","static/chunks/app/preview/%5B...slug%5D/page-9906dc842681db05.js"],"async":false},"/home/gabriel/Projects/Resend/react-email.git/chore-1/node_modules/.pnpm/next@15.1.2_@babel+core@7.24.5_react-dom@19.0.0_react@19.0.0__react@19.0.0/node_modules/next/dist/esm/client/app-dir/link.js":{"id":3935,"name":"*","chunks":["486","static/chunks/afa401a5-9ebf2515b1397993.js","447","static/chunks/447-886131c35ca42b91.js","285","static/chunks/285-dbf6306a0d45c33d.js","603","static/chunks/603-36207c8905355e23.js","490","static/chunks/490-d26ba2019ccd4d2f.js","719","static/chunks/app/preview/%5B...slug%5D/page-9906dc842681db05.js"],"async":false},"/home/gabriel/Projects/Resend/react-email.git/chore-1/node_modules/.pnpm/next@15.1.2_@babel+core@7.24.5_react-dom@19.0.0_react@19.0.0__react@19.0.0/node_modules/next/dist/client/image-component.js":{"id":4312,"name":"*","chunks":["486","static/chunks/afa401a5-9ebf2515b1397993.js","447","static/chunks/447-886131c35ca42b91.js","285","static/chunks/285-dbf6306a0d45c33d.js","603","static/chunks/603-36207c8905355e23.js","490","static/chunks/490-d26ba2019ccd4d2f.js","719","static/chunks/app/preview/%5B...slug%5D/page-9906dc842681db05.js"],"async":false},"/home/gabriel/Projects/Resend/react-email.git/chore-1/node_modules/.pnpm/next@15.1.2_@babel+core@7.24.5_react-dom@19.0.0_react@19.0.0__react@19.0.0/node_modules/next/dist/esm/client/image-component.js":{"id":4312,"name":"*","chunks":["486","static/chunks/afa401a5-9ebf2515b1397993.js","447","static/chunks/447-886131c35ca42b91.js","285","static/chunks/285-dbf6306a0d45c33d.js","603","static/chunks/603-36207c8905355e23.js","490","static/chunks/490-d26ba2019ccd4d2f.js","719","static/chunks/app/preview/%5B...slug%5D/page-9906dc842681db05.js"],"async":false},"/home/gabriel/Projects/Resend/react-email.git/chore-1/packages/react-email/src/app/logo.png":{"id":9747,"name":"*","chunks":["486","static/chunks/afa401a5-9ebf2515b1397993.js","447","static/chunks/447-886131c35ca42b91.js","285","static/chunks/285-dbf6306a0d45c33d.js","603","static/chunks/603-36207c8905355e23.js","490","static/chunks/490-d26ba2019ccd4d2f.js","719","static/chunks/app/preview/%5B...slug%5D/page-9906dc842681db05.js"],"async":false},"/home/gabriel/Projects/Resend/react-email.git/chore-1/packages/react-email/src/components/button.tsx":{"id":4289,"name":"*","chunks":["486","static/chunks/afa401a5-9ebf2515b1397993.js","447","static/chunks/447-886131c35ca42b91.js","285","static/chunks/285-dbf6306a0d45c33d.js","603","static/chunks/603-36207c8905355e23.js","490","static/chunks/490-d26ba2019ccd4d2f.js","719","static/chunks/app/preview/%5B...slug%5D/page-9906dc842681db05.js"],"async":false},"/home/gabriel/Projects/Resend/react-email.git/chore-1/packages/react-email/src/components/shell.tsx":{"id":8322,"name":"*","chunks":["486","static/chunks/afa401a5-9ebf2515b1397993.js","447","static/chunks/447-886131c35ca42b91.js","285","static/chunks/285-dbf6306a0d45c33d.js","603","static/chunks/603-36207c8905355e23.js","490","static/chunks/490-d26ba2019ccd4d2f.js","719","static/chunks/app/preview/%5B...slug%5D/page-9906dc842681db05.js"],"async":false},"/home/gabriel/Projects/Resend/react-email.git/chore-1/packages/react-email/src/components/sidebar/sidebar.tsx":{"id":9122,"name":"*","chunks":["486","static/chunks/afa401a5-9ebf2515b1397993.js","447","static/chunks/447-886131c35ca42b91.js","285","static/chunks/285-dbf6306a0d45c33d.js","603","static/chunks/603-36207c8905355e23.js","490","static/chunks/490-d26ba2019ccd4d2f.js","719","static/chunks/app/preview/%5B...slug%5D/page-9906dc842681db05.js"],"async":false},"/home/gabriel/Projects/Resend/react-email.git/chore-1/packages/react-email/src/components/topbar.tsx":{"id":5791,"name":"*","chunks":["486","static/chunks/afa401a5-9ebf2515b1397993.js","447","static/chunks/447-886131c35ca42b91.js","285","static/chunks/285-dbf6306a0d45c33d.js","603","static/chunks/603-36207c8905355e23.js","490","static/chunks/490-d26ba2019ccd4d2f.js","719","static/chunks/app/preview/%5B...slug%5D/page-9906dc842681db05.js"],"async":false},"/home/gabriel/Projects/Resend/react-email.git/chore-1/packages/react-email/src/app/preview/[...slug]/preview.tsx":{"id":4024,"name":"*","chunks":["486","static/chunks/afa401a5-9ebf2515b1397993.js","447","static/chunks/447-886131c35ca42b91.js","285","static/chunks/285-dbf6306a0d45c33d.js","603","static/chunks/603-36207c8905355e23.js","490","static/chunks/490-d26ba2019ccd4d2f.js","719","static/chunks/app/preview/%5B...slug%5D/page-9906dc842681db05.js"],"async":false}},"entryCSSFiles":{"/home/gabriel/Projects/Resend/react-email.git/chore-1/packages/react-email/src/":[],"/home/gabriel/Projects/Resend/react-email.git/chore-1/packages/react-email/src/app/layout":[{"inlined":false,"path":"static/css/b60917edfd15a496.css"},{"inlined":false,"path":"static/css/ec5d7e66bd3b6cb8.css"}],"/home/gabriel/Projects/Resend/react-email.git/chore-1/packages/react-email/src/app/page":[{"inlined":false,"path":"static/css/ec5d7e66bd3b6cb8.css"}],"/home/gabriel/Projects/Resend/react-email.git/chore-1/packages/react-email/src/app/preview/[...slug]/page":[{"inlined":false,"path":"static/css/ec5d7e66bd3b6cb8.css"}]},"rscModuleMapping":{"3103":{"*":{"id":"38389","name":"*","chunks":[],"async":false}},"3935":{"*":{"id":"25653","name":"*","chunks":[],"async":false}},"3960":{"*":{"id":"98020","name":"*","chunks":[],"async":false}},"4024":{"*":{"id":"3445","name":"*","chunks":[],"async":false}},"4289":{"*":{"id":"46749","name":"*","chunks":[],"async":false}},"4312":{"*":{"id":"49188","name":"*","chunks":[],"async":false}},"4657":{"*":{"id":"19545","name":"*","chunks":[],"async":false}},"5791":{"*":{"id":"8581","name":"*","chunks":[],"async":false}},"6307":{"*":{"id":"27003","name":"*","chunks":[],"async":false}},"6587":{"*":{"id":"64257","name":"*","chunks":[],"async":false}},"6730":{"*":{"id":"72832","name":"*","chunks":[],"async":false}},"8322":{"*":{"id":"61831","name":"*","chunks":[],"async":false}},"9122":{"*":{"id":"52027","name":"*","chunks":[],"async":false}},"9328":{"*":{"id":"68710","name":"*","chunks":[],"async":false}},"9658":{"*":{"id":"44672","name":"*","chunks":[],"async":false}},"9693":{"*":{"id":"20945","name":"*","chunks":[],"async":false}},"9747":{"*":{"id":"81818","name":"*","chunks":[],"async":false}}},"edgeRscModuleMapping":{"3935":{"*":{"id":"17189","name":"*","chunks":[],"async":false}},"3960":{"*":{"id":"70644","name":"*","chunks":[],"async":false}},"4312":{"*":{"id":"86644","name":"*","chunks":[],"async":false}},"4657":{"*":{"id":"73545","name":"*","chunks":[],"async":false}},"6307":{"*":{"id":"51939","name":"*","chunks":[],"async":false}},"6587":{"*":{"id":"5393","name":"*","chunks":[],"async":false}},"6730":{"*":{"id":"93328","name":"*","chunks":[],"async":false}},"9658":{"*":{"id":"76272","name":"*","chunks":[],"async":false}},"9693":{"*":{"id":"19553","name":"*","chunks":[],"async":false}}}}
@@ -1,6 +1,6 @@
1
1
  {
2
- "/_not-found/page": "app/_not-found/page.js",
3
2
  "/favicon.ico/route": "app/favicon.ico/route.js",
3
+ "/_not-found/page": "app/_not-found/page.js",
4
4
  "/page": "app/page.js",
5
5
  "/preview/[...slug]/page": "app/preview/[...slug]/page.js"
6
6
  }