@react-email/preview-server 1.0.0-canary.0 → 4.1.0-canary.10
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.
- package/.next/BUILD_ID +1 -1
- package/.next/app-build-manifest.json +32 -32
- package/.next/build-manifest.json +14 -14
- package/.next/diagnostics/framework.json +1 -1
- package/.next/next-minimal-server.js.nft.json +1 -1
- package/.next/next-server.js.nft.json +1 -1
- package/.next/prerender-manifest.json +3 -3
- package/.next/required-server-files.json +5 -5
- package/.next/server/app/_not-found/page.js +1 -1
- package/.next/server/app/_not-found/page.js.nft.json +1 -1
- package/.next/server/app/_not-found/page_client-reference-manifest.js +1 -1
- package/.next/server/app/favicon.ico/route.js +1 -1
- package/.next/server/app/favicon.ico/route.js.nft.json +1 -1
- package/.next/server/app/page.js +1 -1
- package/.next/server/app/page.js.nft.json +1 -1
- package/.next/server/app/page_client-reference-manifest.js +1 -1
- package/.next/server/app/preview/[...slug]/page.js +152 -152
- package/.next/server/app/preview/[...slug]/page.js.nft.json +1 -1
- package/.next/server/app/preview/[...slug]/page_client-reference-manifest.js +1 -1
- package/.next/server/chunks/200.js +1 -0
- package/.next/server/chunks/3.js +15 -0
- package/.next/server/chunks/565.js +1 -0
- package/.next/server/chunks/784.js +6 -0
- package/.next/server/chunks/{428.js → 879.js} +7 -7
- package/.next/server/chunks/915.js +20 -0
- package/.next/server/middleware-build-manifest.js +1 -1
- package/.next/server/next-font-manifest.js +1 -1
- package/.next/server/next-font-manifest.json +1 -1
- package/.next/server/pages/500.html +1 -1
- package/.next/server/pages/_app.js +1 -1
- package/.next/server/pages/_app.js.nft.json +1 -1
- package/.next/server/pages/_document.js +1 -1
- package/.next/server/pages/_document.js.nft.json +1 -1
- package/.next/server/pages/_error.js +1 -1
- package/.next/server/pages/_error.js.nft.json +1 -1
- package/.next/server/server-reference-manifest.js +1 -1
- package/.next/server/server-reference-manifest.json +1 -1
- package/.next/static/chunks/{3bd82e28-cda2c00a924937c5.js → 04c799b8-f2be86d6e75dbf29.js} +1 -1
- package/.next/static/chunks/188-e278e5f1e9c4067e.js +1 -0
- package/.next/static/chunks/336-0767fdc0ff1ceaa1.js +1 -0
- package/.next/static/chunks/551-d9ce0a77591e6bf7.js +1 -0
- package/.next/static/chunks/651-ca7523b84c3a84c4.js +1 -0
- package/.next/static/chunks/713-6c7607cb54b8278e.js +1 -0
- package/.next/static/chunks/834-e77d5196a2631efe.js +1 -0
- package/.next/static/chunks/app/_not-found/page-aee2c5619f94a965.js +1 -0
- package/.next/static/chunks/app/layout-51e57d53a74eca29.js +1 -0
- package/.next/static/chunks/app/page-ddc5b5b5b8d2de0e.js +1 -0
- package/.next/static/chunks/app/preview/[...slug]/page-8ac2b346f388df3e.js +1 -0
- package/.next/static/chunks/{f33a14d2-ec7c5f0b91818561.js → f33a14d2-188715a58266ac15.js} +1 -1
- package/.next/static/chunks/{framework-b887e9fc751a9906.js → framework-f71c687711cb40cc.js} +1 -1
- package/.next/static/chunks/main-697e2f65b52ad05c.js +1 -0
- package/.next/static/chunks/main-app-deb9839bdc2bcbd4.js +1 -0
- package/.next/static/chunks/pages/_app-2e335329c12ac3e7.js +1 -0
- package/.next/static/chunks/pages/_error-73094c2ebe868f44.js +1 -0
- package/.next/static/chunks/{webpack-31c45daa2bd82a7b.js → webpack-c09dcf4c47767be8.js} +1 -1
- package/.next/static/css/{35e8811589f0962b.css → ac3decd5d6736fbe.css} +1 -1
- package/.next/static/media/8e9860b6e62d6359-s.woff2 +0 -0
- package/.next/static/media/e4af272ccee01ff0-s.p.woff2 +0 -0
- package/.next/static/{VkyJa9K30jCrKBesOgrQT → ur8mm-bO6uPtIDOFYtHum}/_buildManifest.js +1 -1
- package/.next/trace +27 -27
- package/.next/types/app/layout.ts +1 -1
- package/.next/types/app/page.ts +1 -1
- package/.next/types/app/preview/[...slug]/page.ts +1 -1
- package/CHANGELOG.md +19 -0
- package/index.mjs +17 -0
- package/package.json +4 -4
- package/src/actions/email-validation/check-compatibility.ts +2 -2
- package/src/actions/email-validation/check-images.ts +3 -3
- package/src/actions/email-validation/check-links.ts +3 -3
- package/src/actions/email-validation/quick-fetch.ts +1 -1
- package/src/app/layout.tsx +2 -2
- package/src/app/preview/[...slug]/page.tsx +3 -4
- package/src/components/send.tsx +1 -1
- package/src/components/shell.tsx +4 -1
- package/src/components/toolbar/code-preview-line-link.tsx +0 -1
- package/src/components/toolbar/results.tsx +1 -0
- package/src/components/toolbar/use-cached-state.ts +2 -2
- package/src/utils/caniemail/ast/get-object-variables.ts +1 -1
- package/src/utils/caniemail/get-element-names.ts +9 -3
- package/src/utils/caniemail/tailwind/generate-tailwind-rules.ts +1 -1
- package/src/utils/caniemail/tailwind/get-tailwind-config.ts +1 -10
- package/src/utils/contains-email-template.spec.ts +12 -0
- package/src/utils/contains-email-template.ts +26 -9
- package/src/utils/result.ts +2 -2
- package/src/utils/testing/js-email-test.js +1 -1
- package/src/utils/testing/request-response-email.tsx +2 -2
- package/.next/server/chunks/134.js +0 -6
- package/.next/server/chunks/235.js +0 -15
- package/.next/server/chunks/278.js +0 -1
- package/.next/server/chunks/343.js +0 -20
- package/.next/server/chunks/963.js +0 -1
- package/.next/server/chunks/999.js +0 -1
- package/.next/static/chunks/107-3043079e7cb8bcae.js +0 -1
- package/.next/static/chunks/293-67391ef0e44ffa4f.js +0 -1
- package/.next/static/chunks/45-1021fac82f766268.js +0 -1
- package/.next/static/chunks/484-1969fe871b27074e.js +0 -1
- package/.next/static/chunks/484-e02de792ff5f9ea5.js +0 -1
- package/.next/static/chunks/589-817d8691661d370e.js +0 -1
- package/.next/static/chunks/902-c34acb56733e0ce1.js +0 -1
- package/.next/static/chunks/app/_not-found/page-4cbc7dce3ad33336.js +0 -1
- package/.next/static/chunks/app/layout-74628781c0b7e7bf.js +0 -1
- package/.next/static/chunks/app/layout-daeba68330ab58bb.js +0 -1
- package/.next/static/chunks/app/page-55cf199b7ca71958.js +0 -1
- package/.next/static/chunks/app/preview/[...slug]/page-07dd9a701d0b3e56.js +0 -1
- package/.next/static/chunks/app/preview/[...slug]/page-61b0ea70a8d72916.js +0 -1
- package/.next/static/chunks/main-9a03e7ba8acb1900.js +0 -1
- package/.next/static/chunks/main-app-5bc2d814f500db60.js +0 -1
- package/.next/static/chunks/pages/_app-542a93a5a214e1c0.js +0 -1
- package/.next/static/chunks/pages/_error-d5fe1b1612642f76.js +0 -1
- package/.next/static/j4oDiQwPKPQgK5jAoiUTk/_buildManifest.js +0 -1
- package/.next/static/j4oDiQwPKPQgK5jAoiUTk/_ssgManifest.js +0 -1
- package/.next/static/media/6d93bde91c0c2823-s.woff2 +0 -0
- package/.next/static/media/a34f9d1faa5f3315-s.p.woff2 +0 -0
- package/_index.js +0 -4
- /package/.next/static/{VkyJa9K30jCrKBesOgrQT → ur8mm-bO6uPtIDOFYtHum}/_ssgManifest.js +0 -0
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":1,"files":["../../../../../../../node_modules/.pnpm/@esbuild+linux-x64@0.25.0/node_modules/@esbuild/linux-x64/bin/esbuild","../../../../../../../node_modules/.pnpm/@esbuild+linux-x64@0.25.0/node_modules/@esbuild/linux-x64/package.json","../../../../../../../node_modules/.pnpm/esbuild@0.25.0/node_modules/@esbuild/linux-x64","../../../../../../../node_modules/.pnpm/esbuild@0.25.0/node_modules/esbuild/lib/main.js","../../../../../../../node_modules/.pnpm/esbuild@0.25.0/node_modules/esbuild/package.json","../../../../../../../node_modules/.pnpm/nanoid@3.3.11/node_modules/nanoid/non-secure/index.cjs","../../../../../../../node_modules/.pnpm/nanoid@3.3.11/node_modules/nanoid/non-secure/package.json","../../../../../../../node_modules/.pnpm/nanoid@3.3.11/node_modules/nanoid/package.json","../../../../../../../node_modules/.pnpm/next@15.3.
|
|
1
|
+
{"version":1,"files":["../../../../../../../node_modules/.pnpm/@esbuild+linux-x64@0.25.0/node_modules/@esbuild/linux-x64/bin/esbuild","../../../../../../../node_modules/.pnpm/@esbuild+linux-x64@0.25.0/node_modules/@esbuild/linux-x64/package.json","../../../../../../../node_modules/.pnpm/esbuild@0.25.0/node_modules/@esbuild/linux-x64","../../../../../../../node_modules/.pnpm/esbuild@0.25.0/node_modules/esbuild/lib/main.js","../../../../../../../node_modules/.pnpm/esbuild@0.25.0/node_modules/esbuild/package.json","../../../../../../../node_modules/.pnpm/nanoid@3.3.11/node_modules/nanoid/non-secure/index.cjs","../../../../../../../node_modules/.pnpm/nanoid@3.3.11/node_modules/nanoid/non-secure/package.json","../../../../../../../node_modules/.pnpm/nanoid@3.3.11/node_modules/nanoid/package.json","../../../../../../../node_modules/.pnpm/next@15.3.2_@babel+core@7.26.10_react-dom@19.0.0_react@19.0.0__react@19.0.0/node_modules/next/dist/client/components/app-router-headers.js","../../../../../../../node_modules/.pnpm/next@15.3.2_@babel+core@7.26.10_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.3.2_@babel+core@7.26.10_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.3.2_@babel+core@7.26.10_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.3.2_@babel+core@7.26.10_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.3.2_@babel+core@7.26.10_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.3.2_@babel+core@7.26.10_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.3.2_@babel+core@7.26.10_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.3.2_@babel+core@7.26.10_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.3.2_@babel+core@7.26.10_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.3.2_@babel+core@7.26.10_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.3.2_@babel+core@7.26.10_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.3.2_@babel+core@7.26.10_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.3.2_@babel+core@7.26.10_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.3.2_@babel+core@7.26.10_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.3.2_@babel+core@7.26.10_react-dom@19.0.0_react@19.0.0__react@19.0.0/node_modules/next/dist/server/lib/incremental-cache/tags-manifest.external.js","../../../../../../../node_modules/.pnpm/next@15.3.2_@babel+core@7.26.10_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.3.2_@babel+core@7.26.10_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.3.2_@babel+core@7.26.10_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.3.2_@babel+core@7.26.10_react-dom@19.0.0_react@19.0.0__react@19.0.0/node_modules/next/package.json","../../../../../../../node_modules/.pnpm/picocolors@1.1.1/node_modules/picocolors/package.json","../../../../../../../node_modules/.pnpm/picocolors@1.1.1/node_modules/picocolors/picocolors.js","../../../../../../../node_modules/.pnpm/postcss@8.5.3/node_modules/nanoid","../../../../../../../node_modules/.pnpm/postcss@8.5.3/node_modules/picocolors","../../../../../../../node_modules/.pnpm/postcss@8.5.3/node_modules/postcss/lib/at-rule.js","../../../../../../../node_modules/.pnpm/postcss@8.5.3/node_modules/postcss/lib/comment.js","../../../../../../../node_modules/.pnpm/postcss@8.5.3/node_modules/postcss/lib/container.js","../../../../../../../node_modules/.pnpm/postcss@8.5.3/node_modules/postcss/lib/css-syntax-error.js","../../../../../../../node_modules/.pnpm/postcss@8.5.3/node_modules/postcss/lib/declaration.js","../../../../../../../node_modules/.pnpm/postcss@8.5.3/node_modules/postcss/lib/document.js","../../../../../../../node_modules/.pnpm/postcss@8.5.3/node_modules/postcss/lib/fromJSON.js","../../../../../../../node_modules/.pnpm/postcss@8.5.3/node_modules/postcss/lib/input.js","../../../../../../../node_modules/.pnpm/postcss@8.5.3/node_modules/postcss/lib/lazy-result.js","../../../../../../../node_modules/.pnpm/postcss@8.5.3/node_modules/postcss/lib/list.js","../../../../../../../node_modules/.pnpm/postcss@8.5.3/node_modules/postcss/lib/map-generator.js","../../../../../../../node_modules/.pnpm/postcss@8.5.3/node_modules/postcss/lib/no-work-result.js","../../../../../../../node_modules/.pnpm/postcss@8.5.3/node_modules/postcss/lib/node.js","../../../../../../../node_modules/.pnpm/postcss@8.5.3/node_modules/postcss/lib/parse.js","../../../../../../../node_modules/.pnpm/postcss@8.5.3/node_modules/postcss/lib/parser.js","../../../../../../../node_modules/.pnpm/postcss@8.5.3/node_modules/postcss/lib/postcss.js","../../../../../../../node_modules/.pnpm/postcss@8.5.3/node_modules/postcss/lib/postcss.mjs","../../../../../../../node_modules/.pnpm/postcss@8.5.3/node_modules/postcss/lib/previous-map.js","../../../../../../../node_modules/.pnpm/postcss@8.5.3/node_modules/postcss/lib/processor.js","../../../../../../../node_modules/.pnpm/postcss@8.5.3/node_modules/postcss/lib/result.js","../../../../../../../node_modules/.pnpm/postcss@8.5.3/node_modules/postcss/lib/root.js","../../../../../../../node_modules/.pnpm/postcss@8.5.3/node_modules/postcss/lib/rule.js","../../../../../../../node_modules/.pnpm/postcss@8.5.3/node_modules/postcss/lib/stringifier.js","../../../../../../../node_modules/.pnpm/postcss@8.5.3/node_modules/postcss/lib/stringify.js","../../../../../../../node_modules/.pnpm/postcss@8.5.3/node_modules/postcss/lib/symbols.js","../../../../../../../node_modules/.pnpm/postcss@8.5.3/node_modules/postcss/lib/terminal-highlight.js","../../../../../../../node_modules/.pnpm/postcss@8.5.3/node_modules/postcss/lib/tokenize.js","../../../../../../../node_modules/.pnpm/postcss@8.5.3/node_modules/postcss/lib/warn-once.js","../../../../../../../node_modules/.pnpm/postcss@8.5.3/node_modules/postcss/lib/warning.js","../../../../../../../node_modules/.pnpm/postcss@8.5.3/node_modules/postcss/package.json","../../../../../../../node_modules/.pnpm/postcss@8.5.3/node_modules/source-map-js","../../../../../../../node_modules/.pnpm/source-map-js@1.2.1/node_modules/source-map-js/lib/array-set.js","../../../../../../../node_modules/.pnpm/source-map-js@1.2.1/node_modules/source-map-js/lib/base64-vlq.js","../../../../../../../node_modules/.pnpm/source-map-js@1.2.1/node_modules/source-map-js/lib/base64.js","../../../../../../../node_modules/.pnpm/source-map-js@1.2.1/node_modules/source-map-js/lib/binary-search.js","../../../../../../../node_modules/.pnpm/source-map-js@1.2.1/node_modules/source-map-js/lib/mapping-list.js","../../../../../../../node_modules/.pnpm/source-map-js@1.2.1/node_modules/source-map-js/lib/quick-sort.js","../../../../../../../node_modules/.pnpm/source-map-js@1.2.1/node_modules/source-map-js/lib/source-map-consumer.js","../../../../../../../node_modules/.pnpm/source-map-js@1.2.1/node_modules/source-map-js/lib/source-map-generator.js","../../../../../../../node_modules/.pnpm/source-map-js@1.2.1/node_modules/source-map-js/lib/source-node.js","../../../../../../../node_modules/.pnpm/source-map-js@1.2.1/node_modules/source-map-js/lib/util.js","../../../../../../../node_modules/.pnpm/source-map-js@1.2.1/node_modules/source-map-js/package.json","../../../../../../../node_modules/.pnpm/source-map-js@1.2.1/node_modules/source-map-js/source-map.js","../../../../../../../package.json","../../../../../node_modules/esbuild","../../../../../node_modules/next","../../../../../node_modules/postcss","../../../../../package.json","../../../../package.json","../../../chunks/200.js","../../../chunks/3.js","../../../chunks/565.js","../../../chunks/879.js","../../../chunks/915.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/"},"ssrModuleMapping":{"184":{"*":{"id":"41922","name":"*","chunks":[],"async":false}},"507":{"*":{"id":"78132","name":"*","chunks":[],"async":false}},"1139":{"*":{"id":"76190","name":"*","chunks":[],"async":false}},"1494":{"*":{"id":"58716","name":"*","chunks":[],"async":false}},"1875":{"*":{"id":"54114","name":"*","chunks":[],"async":false}},"3566":{"*":{"id":"3983","name":"*","chunks":[],"async":false}},"3726":{"*":{"id":"73952","name":"*","chunks":[],"async":false}},"3902":{"*":{"id":"94674","name":"*","chunks":[],"async":false}},"5254":{"*":{"id":"54314","name":"*","chunks":[],"async":false}},"6484":{"*":{"id":"66586","name":"*","chunks":[],"async":false}},"6981":{"*":{"id":"62561","name":"*","chunks":[],"async":false}},"7012":{"*":{"id":"8039","name":"*","chunks":[],"async":false}},"7437":{"*":{"id":"69291","name":"*","chunks":[],"async":false}},"7608":{"*":{"id":"53627","name":"*","chunks":[],"async":false}},"7920":{"*":{"id":"87440","name":"*","chunks":[],"async":false}},"8271":{"*":{"id":"61175","name":"*","chunks":[],"async":false}},"8340":{"*":{"id":"55319","name":"*","chunks":[],"async":false}},"8814":{"*":{"id":"47311","name":"*","chunks":[],"async":false}},"9567":{"*":{"id":"59723","name":"*","chunks":[],"async":false}},"9681":{"*":{"id":"34047","name":"*","chunks":[],"async":false}}},"edgeSSRModuleMapping":{},"clientModules":{"/home/gabriel/Projects/Resend/react-email/node_modules/.pnpm/next@15.3.1_@babel+core@7.26.10_react-dom@19.0.0_react@19.0.0__react@19.0.0/node_modules/next/dist/client/components/client-page.js":{"id":7437,"name":"*","chunks":[],"async":false},"/home/gabriel/Projects/Resend/react-email/node_modules/.pnpm/next@15.3.1_@babel+core@7.26.10_react-dom@19.0.0_react@19.0.0__react@19.0.0/node_modules/next/dist/esm/client/components/client-page.js":{"id":7437,"name":"*","chunks":[],"async":false},"/home/gabriel/Projects/Resend/react-email/node_modules/.pnpm/next@15.3.1_@babel+core@7.26.10_react-dom@19.0.0_react@19.0.0__react@19.0.0/node_modules/next/dist/client/components/client-segment.js":{"id":8271,"name":"*","chunks":[],"async":false},"/home/gabriel/Projects/Resend/react-email/node_modules/.pnpm/next@15.3.1_@babel+core@7.26.10_react-dom@19.0.0_react@19.0.0__react@19.0.0/node_modules/next/dist/esm/client/components/client-segment.js":{"id":8271,"name":"*","chunks":[],"async":false},"/home/gabriel/Projects/Resend/react-email/node_modules/.pnpm/next@15.3.1_@babel+core@7.26.10_react-dom@19.0.0_react@19.0.0__react@19.0.0/node_modules/next/dist/client/components/error-boundary.js":{"id":9567,"name":"*","chunks":[],"async":false},"/home/gabriel/Projects/Resend/react-email/node_modules/.pnpm/next@15.3.1_@babel+core@7.26.10_react-dom@19.0.0_react@19.0.0__react@19.0.0/node_modules/next/dist/esm/client/components/error-boundary.js":{"id":9567,"name":"*","chunks":[],"async":false},"/home/gabriel/Projects/Resend/react-email/node_modules/.pnpm/next@15.3.1_@babel+core@7.26.10_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":6484,"name":"*","chunks":[],"async":false},"/home/gabriel/Projects/Resend/react-email/node_modules/.pnpm/next@15.3.1_@babel+core@7.26.10_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":6484,"name":"*","chunks":[],"async":false},"/home/gabriel/Projects/Resend/react-email/node_modules/.pnpm/next@15.3.1_@babel+core@7.26.10_react-dom@19.0.0_react@19.0.0__react@19.0.0/node_modules/next/dist/client/components/layout-router.js":{"id":1139,"name":"*","chunks":[],"async":false},"/home/gabriel/Projects/Resend/react-email/node_modules/.pnpm/next@15.3.1_@babel+core@7.26.10_react-dom@19.0.0_react@19.0.0__react@19.0.0/node_modules/next/dist/esm/client/components/layout-router.js":{"id":1139,"name":"*","chunks":[],"async":false},"/home/gabriel/Projects/Resend/react-email/node_modules/.pnpm/next@15.3.1_@babel+core@7.26.10_react-dom@19.0.0_react@19.0.0__react@19.0.0/node_modules/next/dist/client/components/metadata/async-metadata.js":{"id":184,"name":"*","chunks":[],"async":false},"/home/gabriel/Projects/Resend/react-email/node_modules/.pnpm/next@15.3.1_@babel+core@7.26.10_react-dom@19.0.0_react@19.0.0__react@19.0.0/node_modules/next/dist/esm/client/components/metadata/async-metadata.js":{"id":184,"name":"*","chunks":[],"async":false},"/home/gabriel/Projects/Resend/react-email/node_modules/.pnpm/next@15.3.1_@babel+core@7.26.10_react-dom@19.0.0_react@19.0.0__react@19.0.0/node_modules/next/dist/client/components/metadata/metadata-boundary.js":{"id":7920,"name":"*","chunks":[],"async":false},"/home/gabriel/Projects/Resend/react-email/node_modules/.pnpm/next@15.3.1_@babel+core@7.26.10_react-dom@19.0.0_react@19.0.0__react@19.0.0/node_modules/next/dist/esm/client/components/metadata/metadata-boundary.js":{"id":7920,"name":"*","chunks":[],"async":false},"/home/gabriel/Projects/Resend/react-email/node_modules/.pnpm/next@15.3.1_@babel+core@7.26.10_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":5254,"name":"*","chunks":[],"async":false},"/home/gabriel/Projects/Resend/react-email/node_modules/.pnpm/next@15.3.1_@babel+core@7.26.10_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":5254,"name":"*","chunks":[],"async":false},"/home/gabriel/Projects/Resend/react-email/packages/preview-server/src/app/globals.css":{"id":1769,"name":"*","chunks":["589","static/chunks/589-817d8691661d370e.js","177","static/chunks/app/layout-daeba68330ab58bb.js"],"async":false},"/home/gabriel/Projects/Resend/react-email/node_modules/.pnpm/next@15.3.1_@babel+core@7.26.10_react-dom@19.0.0_react@19.0.0__react@19.0.0/node_modules/next/font/google/target.css?{\"path\":\"src/app/fonts.ts\",\"import\":\"Inter\",\"arguments\":[{\"subsets\":[\"latin\"],\"variable\":\"--font-inter\",\"display\":\"swap\"}],\"variableName\":\"inter\"}":{"id":919,"name":"*","chunks":["589","static/chunks/589-817d8691661d370e.js","177","static/chunks/app/layout-daeba68330ab58bb.js"],"async":false},"/home/gabriel/Projects/Resend/react-email/node_modules/.pnpm/next@15.3.1_@babel+core@7.26.10_react-dom@19.0.0_react@19.0.0__react@19.0.0/node_modules/next/font/local/target.css?{\"path\":\"src/app/fonts.ts\",\"import\":\"\",\"arguments\":[{\"src\":[{\"path\":\"./fonts/SFMono/SFMonoLight.otf\",\"weight\":\"300\"},{\"path\":\"./fonts/SFMono/SFMonoRegular.otf\",\"weight\":\"400\"},{\"path\":\"./fonts/SFMono/SFMonoMedium.otf\",\"weight\":\"500\"},{\"path\":\"./fonts/SFMono/SFMonoSemibold.otf\",\"weight\":\"600\"},{\"path\":\"./fonts/SFMono/SFMonoBold.otf\",\"weight\":\"700\"},{\"path\":\"./fonts/SFMono/SFMonoHeavy.otf\",\"weight\":\"800\"}],\"variable\":\"--font-sf-mono\",\"display\":\"swap\"}],\"variableName\":\"sfMono\"}":{"id":5991,"name":"*","chunks":["589","static/chunks/589-817d8691661d370e.js","177","static/chunks/app/layout-daeba68330ab58bb.js"],"async":false},"/home/gabriel/Projects/Resend/react-email/packages/preview-server/src/contexts/emails.tsx":{"id":6981,"name":"*","chunks":["589","static/chunks/589-817d8691661d370e.js","177","static/chunks/app/layout-daeba68330ab58bb.js"],"async":false},"/home/gabriel/Projects/Resend/react-email/node_modules/.pnpm/next@15.3.1_@babel+core@7.26.10_react-dom@19.0.0_react@19.0.0__react@19.0.0/node_modules/next/dist/client/app-dir/link.js":{"id":9681,"name":"*","chunks":["979","static/chunks/f33a14d2-ec7c5f0b91818561.js","589","static/chunks/589-817d8691661d370e.js","293","static/chunks/293-67391ef0e44ffa4f.js","902","static/chunks/902-c34acb56733e0ce1.js","484","static/chunks/484-e02de792ff5f9ea5.js","974","static/chunks/app/page-55cf199b7ca71958.js"],"async":false},"/home/gabriel/Projects/Resend/react-email/node_modules/.pnpm/next@15.3.1_@babel+core@7.26.10_react-dom@19.0.0_react@19.0.0__react@19.0.0/node_modules/next/dist/esm/client/app-dir/link.js":{"id":9681,"name":"*","chunks":["979","static/chunks/f33a14d2-ec7c5f0b91818561.js","589","static/chunks/589-817d8691661d370e.js","293","static/chunks/293-67391ef0e44ffa4f.js","902","static/chunks/902-c34acb56733e0ce1.js","484","static/chunks/484-e02de792ff5f9ea5.js","974","static/chunks/app/page-55cf199b7ca71958.js"],"async":false},"/home/gabriel/Projects/Resend/react-email/node_modules/.pnpm/next@15.3.1_@babel+core@7.26.10_react-dom@19.0.0_react@19.0.0__react@19.0.0/node_modules/next/dist/client/image-component.js":{"id":3902,"name":"*","chunks":["979","static/chunks/f33a14d2-ec7c5f0b91818561.js","589","static/chunks/589-817d8691661d370e.js","293","static/chunks/293-67391ef0e44ffa4f.js","902","static/chunks/902-c34acb56733e0ce1.js","484","static/chunks/484-e02de792ff5f9ea5.js","974","static/chunks/app/page-55cf199b7ca71958.js"],"async":false},"/home/gabriel/Projects/Resend/react-email/node_modules/.pnpm/next@15.3.1_@babel+core@7.26.10_react-dom@19.0.0_react@19.0.0__react@19.0.0/node_modules/next/dist/esm/client/image-component.js":{"id":3902,"name":"*","chunks":["979","static/chunks/f33a14d2-ec7c5f0b91818561.js","589","static/chunks/589-817d8691661d370e.js","293","static/chunks/293-67391ef0e44ffa4f.js","902","static/chunks/902-c34acb56733e0ce1.js","484","static/chunks/484-e02de792ff5f9ea5.js","974","static/chunks/app/page-55cf199b7ca71958.js"],"async":false},"/home/gabriel/Projects/Resend/react-email/packages/preview-server/src/app/logo.png":{"id":8814,"name":"*","chunks":["979","static/chunks/f33a14d2-ec7c5f0b91818561.js","589","static/chunks/589-817d8691661d370e.js","293","static/chunks/293-67391ef0e44ffa4f.js","902","static/chunks/902-c34acb56733e0ce1.js","484","static/chunks/484-e02de792ff5f9ea5.js","974","static/chunks/app/page-55cf199b7ca71958.js"],"async":false},"/home/gabriel/Projects/Resend/react-email/packages/preview-server/src/components/button.tsx":{"id":3566,"name":"*","chunks":["979","static/chunks/f33a14d2-ec7c5f0b91818561.js","589","static/chunks/589-817d8691661d370e.js","293","static/chunks/293-67391ef0e44ffa4f.js","902","static/chunks/902-c34acb56733e0ce1.js","484","static/chunks/484-e02de792ff5f9ea5.js","974","static/chunks/app/page-55cf199b7ca71958.js"],"async":false},"/home/gabriel/Projects/Resend/react-email/packages/preview-server/src/components/code.tsx":{"id":507,"name":"*","chunks":["979","static/chunks/f33a14d2-ec7c5f0b91818561.js","589","static/chunks/589-817d8691661d370e.js","293","static/chunks/293-67391ef0e44ffa4f.js","902","static/chunks/902-c34acb56733e0ce1.js","484","static/chunks/484-e02de792ff5f9ea5.js","974","static/chunks/app/page-55cf199b7ca71958.js"],"async":false},"/home/gabriel/Projects/Resend/react-email/packages/preview-server/src/components/shell.tsx":{"id":1494,"name":"*","chunks":["979","static/chunks/f33a14d2-ec7c5f0b91818561.js","589","static/chunks/589-817d8691661d370e.js","293","static/chunks/293-67391ef0e44ffa4f.js","45","static/chunks/45-1021fac82f766268.js","484","static/chunks/484-e02de792ff5f9ea5.js","719","static/chunks/app/preview/%5B...slug%5D/page-61b0ea70a8d72916.js"],"async":false},"/home/gabriel/Projects/Resend/react-email/packages/preview-server/src/components/sidebar/sidebar.tsx":{"id":7608,"name":"*","chunks":["979","static/chunks/f33a14d2-ec7c5f0b91818561.js","589","static/chunks/589-817d8691661d370e.js","293","static/chunks/293-67391ef0e44ffa4f.js","902","static/chunks/902-c34acb56733e0ce1.js","484","static/chunks/484-e02de792ff5f9ea5.js","974","static/chunks/app/page-55cf199b7ca71958.js"],"async":false},"/home/gabriel/Projects/Resend/react-email/packages/preview-server/src/components/topbar.tsx":{"id":1875,"name":"*","chunks":["979","static/chunks/f33a14d2-ec7c5f0b91818561.js","589","static/chunks/589-817d8691661d370e.js","293","static/chunks/293-67391ef0e44ffa4f.js","902","static/chunks/902-c34acb56733e0ce1.js","484","static/chunks/484-e02de792ff5f9ea5.js","974","static/chunks/app/page-55cf199b7ca71958.js"],"async":false},"/home/gabriel/Projects/Resend/react-email/packages/preview-server/src/app/preview/[...slug]/preview.tsx":{"id":3726,"name":"*","chunks":["979","static/chunks/f33a14d2-ec7c5f0b91818561.js","589","static/chunks/589-817d8691661d370e.js","293","static/chunks/293-67391ef0e44ffa4f.js","45","static/chunks/45-1021fac82f766268.js","484","static/chunks/484-e02de792ff5f9ea5.js","719","static/chunks/app/preview/%5B...slug%5D/page-61b0ea70a8d72916.js"],"async":false},"/home/gabriel/Projects/Resend/react-email/packages/preview-server/src/components/toolbar.tsx":{"id":8340,"name":"*","chunks":["979","static/chunks/f33a14d2-ec7c5f0b91818561.js","589","static/chunks/589-817d8691661d370e.js","293","static/chunks/293-67391ef0e44ffa4f.js","45","static/chunks/45-1021fac82f766268.js","484","static/chunks/484-e02de792ff5f9ea5.js","719","static/chunks/app/preview/%5B...slug%5D/page-61b0ea70a8d72916.js"],"async":false},"/home/gabriel/Projects/Resend/react-email/packages/preview-server/src/contexts/preview.tsx":{"id":7012,"name":"*","chunks":["979","static/chunks/f33a14d2-ec7c5f0b91818561.js","589","static/chunks/589-817d8691661d370e.js","293","static/chunks/293-67391ef0e44ffa4f.js","45","static/chunks/45-1021fac82f766268.js","484","static/chunks/484-e02de792ff5f9ea5.js","719","static/chunks/app/preview/%5B...slug%5D/page-61b0ea70a8d72916.js"],"async":false}},"entryCSSFiles":{"/home/gabriel/Projects/Resend/react-email/packages/preview-server/src/":[],"/home/gabriel/Projects/Resend/react-email/packages/preview-server/src/app/layout":[{"inlined":false,"path":"static/css/35e8811589f0962b.css"}],"/home/gabriel/Projects/Resend/react-email/packages/preview-server/src/app/page":[],"/home/gabriel/Projects/Resend/react-email/packages/preview-server/src/app/preview/[...slug]/page":[]},"rscModuleMapping":{"184":{"*":{"id":"86140","name":"*","chunks":[],"async":false}},"507":{"*":{"id":"19089","name":"*","chunks":[],"async":false}},"1139":{"*":{"id":"93208","name":"*","chunks":[],"async":false}},"1494":{"*":{"id":"1598","name":"*","chunks":[],"async":false}},"1769":{"*":{"id":"35360","name":"*","chunks":[],"async":false}},"1875":{"*":{"id":"94162","name":"*","chunks":[],"async":false}},"3566":{"*":{"id":"89426","name":"*","chunks":[],"async":false}},"3726":{"*":{"id":"95346","name":"*","chunks":[],"async":false}},"3902":{"*":{"id":"48796","name":"*","chunks":[],"async":false}},"5254":{"*":{"id":"33292","name":"*","chunks":[],"async":false}},"6484":{"*":{"id":"14376","name":"*","chunks":[],"async":false}},"6981":{"*":{"id":"98681","name":"*","chunks":[],"async":false}},"7012":{"*":{"id":"13656","name":"*","chunks":[],"async":false}},"7437":{"*":{"id":"92905","name":"*","chunks":[],"async":false}},"7608":{"*":{"id":"6737","name":"*","chunks":[],"async":false}},"7920":{"*":{"id":"77706","name":"*","chunks":[],"async":false}},"8271":{"*":{"id":"94033","name":"*","chunks":[],"async":false}},"8340":{"*":{"id":"37401","name":"*","chunks":[],"async":false}},"8814":{"*":{"id":"94167","name":"*","chunks":[],"async":false}},"9567":{"*":{"id":"99609","name":"*","chunks":[],"async":false}},"9681":{"*":{"id":"55821","name":"*","chunks":[],"async":false}}},"edgeRscModuleMapping":{"184":{"*":{"id":"41922","name":"*","chunks":[],"async":false}},"1139":{"*":{"id":"76190","name":"*","chunks":[],"async":false}},"3902":{"*":{"id":"94674","name":"*","chunks":[],"async":false}},"5254":{"*":{"id":"54314","name":"*","chunks":[],"async":false}},"6484":{"*":{"id":"66586","name":"*","chunks":[],"async":false}},"7437":{"*":{"id":"69291","name":"*","chunks":[],"async":false}},"7920":{"*":{"id":"87440","name":"*","chunks":[],"async":false}},"8271":{"*":{"id":"61175","name":"*","chunks":[],"async":false}},"9567":{"*":{"id":"59723","name":"*","chunks":[],"async":false}},"9681":{"*":{"id":"34047","name":"*","chunks":[],"async":false}}}}
|
|
1
|
+
globalThis.__RSC_MANIFEST=(globalThis.__RSC_MANIFEST||{});globalThis.__RSC_MANIFEST["/preview/[...slug]/page"]={"moduleLoading":{"prefix":"/_next/"},"ssrModuleMapping":{"170":{"*":{"id":"47527","name":"*","chunks":[],"async":false}},"266":{"*":{"id":"98554","name":"*","chunks":[],"async":false}},"271":{"*":{"id":"4374","name":"*","chunks":[],"async":false}},"626":{"*":{"id":"16314","name":"*","chunks":[],"async":false}},"887":{"*":{"id":"6101","name":"*","chunks":[],"async":false}},"1551":{"*":{"id":"25515","name":"*","chunks":[],"async":false}},"1735":{"*":{"id":"35322","name":"*","chunks":[],"async":false}},"2816":{"*":{"id":"58009","name":"*","chunks":[],"async":false}},"3397":{"*":{"id":"21032","name":"*","chunks":[],"async":false}},"3478":{"*":{"id":"22316","name":"*","chunks":[],"async":false}},"4106":{"*":{"id":"30427","name":"*","chunks":[],"async":false}},"5559":{"*":{"id":"75123","name":"*","chunks":[],"async":false}},"5950":{"*":{"id":"43426","name":"*","chunks":[],"async":false}},"7115":{"*":{"id":"19217","name":"*","chunks":[],"async":false}},"7570":{"*":{"id":"14882","name":"*","chunks":[],"async":false}},"7662":{"*":{"id":"18404","name":"*","chunks":[],"async":false}},"8007":{"*":{"id":"1449","name":"*","chunks":[],"async":false}},"8137":{"*":{"id":"11622","name":"*","chunks":[],"async":false}},"8326":{"*":{"id":"77729","name":"*","chunks":[],"async":false}},"8474":{"*":{"id":"66589","name":"*","chunks":[],"async":false}}},"edgeSSRModuleMapping":{},"clientModules":{"/home/runner/actions-runner/_work/react-email/react-email/node_modules/.pnpm/next@15.3.2_@babel+core@7.26.10_react-dom@19.0.0_react@19.0.0__react@19.0.0/node_modules/next/dist/client/components/client-page.js":{"id":3478,"name":"*","chunks":[],"async":false},"/home/runner/actions-runner/_work/react-email/react-email/node_modules/.pnpm/next@15.3.2_@babel+core@7.26.10_react-dom@19.0.0_react@19.0.0__react@19.0.0/node_modules/next/dist/esm/client/components/client-page.js":{"id":3478,"name":"*","chunks":[],"async":false},"/home/runner/actions-runner/_work/react-email/react-email/node_modules/.pnpm/next@15.3.2_@babel+core@7.26.10_react-dom@19.0.0_react@19.0.0__react@19.0.0/node_modules/next/dist/client/components/client-segment.js":{"id":7570,"name":"*","chunks":[],"async":false},"/home/runner/actions-runner/_work/react-email/react-email/node_modules/.pnpm/next@15.3.2_@babel+core@7.26.10_react-dom@19.0.0_react@19.0.0__react@19.0.0/node_modules/next/dist/esm/client/components/client-segment.js":{"id":7570,"name":"*","chunks":[],"async":false},"/home/runner/actions-runner/_work/react-email/react-email/node_modules/.pnpm/next@15.3.2_@babel+core@7.26.10_react-dom@19.0.0_react@19.0.0__react@19.0.0/node_modules/next/dist/client/components/error-boundary.js":{"id":5950,"name":"*","chunks":[],"async":false},"/home/runner/actions-runner/_work/react-email/react-email/node_modules/.pnpm/next@15.3.2_@babel+core@7.26.10_react-dom@19.0.0_react@19.0.0__react@19.0.0/node_modules/next/dist/esm/client/components/error-boundary.js":{"id":5950,"name":"*","chunks":[],"async":false},"/home/runner/actions-runner/_work/react-email/react-email/node_modules/.pnpm/next@15.3.2_@babel+core@7.26.10_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":887,"name":"*","chunks":[],"async":false},"/home/runner/actions-runner/_work/react-email/react-email/node_modules/.pnpm/next@15.3.2_@babel+core@7.26.10_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":887,"name":"*","chunks":[],"async":false},"/home/runner/actions-runner/_work/react-email/react-email/node_modules/.pnpm/next@15.3.2_@babel+core@7.26.10_react-dom@19.0.0_react@19.0.0__react@19.0.0/node_modules/next/dist/client/components/layout-router.js":{"id":7115,"name":"*","chunks":[],"async":false},"/home/runner/actions-runner/_work/react-email/react-email/node_modules/.pnpm/next@15.3.2_@babel+core@7.26.10_react-dom@19.0.0_react@19.0.0__react@19.0.0/node_modules/next/dist/esm/client/components/layout-router.js":{"id":7115,"name":"*","chunks":[],"async":false},"/home/runner/actions-runner/_work/react-email/react-email/node_modules/.pnpm/next@15.3.2_@babel+core@7.26.10_react-dom@19.0.0_react@19.0.0__react@19.0.0/node_modules/next/dist/client/components/metadata/async-metadata.js":{"id":8007,"name":"*","chunks":[],"async":false},"/home/runner/actions-runner/_work/react-email/react-email/node_modules/.pnpm/next@15.3.2_@babel+core@7.26.10_react-dom@19.0.0_react@19.0.0__react@19.0.0/node_modules/next/dist/esm/client/components/metadata/async-metadata.js":{"id":8007,"name":"*","chunks":[],"async":false},"/home/runner/actions-runner/_work/react-email/react-email/node_modules/.pnpm/next@15.3.2_@babel+core@7.26.10_react-dom@19.0.0_react@19.0.0__react@19.0.0/node_modules/next/dist/client/components/metadata/metadata-boundary.js":{"id":8326,"name":"*","chunks":[],"async":false},"/home/runner/actions-runner/_work/react-email/react-email/node_modules/.pnpm/next@15.3.2_@babel+core@7.26.10_react-dom@19.0.0_react@19.0.0__react@19.0.0/node_modules/next/dist/esm/client/components/metadata/metadata-boundary.js":{"id":8326,"name":"*","chunks":[],"async":false},"/home/runner/actions-runner/_work/react-email/react-email/node_modules/.pnpm/next@15.3.2_@babel+core@7.26.10_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":5559,"name":"*","chunks":[],"async":false},"/home/runner/actions-runner/_work/react-email/react-email/node_modules/.pnpm/next@15.3.2_@babel+core@7.26.10_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":5559,"name":"*","chunks":[],"async":false},"/home/runner/actions-runner/_work/react-email/react-email/packages/preview-server/src/app/globals.css":{"id":6593,"name":"*","chunks":["336","static/chunks/336-0767fdc0ff1ceaa1.js","177","static/chunks/app/layout-51e57d53a74eca29.js"],"async":false},"/home/runner/actions-runner/_work/react-email/react-email/node_modules/.pnpm/next@15.3.2_@babel+core@7.26.10_react-dom@19.0.0_react@19.0.0__react@19.0.0/node_modules/next/font/google/target.css?{\"path\":\"src/app/fonts.ts\",\"import\":\"Inter\",\"arguments\":[{\"subsets\":[\"latin\"],\"variable\":\"--font-inter\",\"display\":\"swap\"}],\"variableName\":\"inter\"}":{"id":593,"name":"*","chunks":["336","static/chunks/336-0767fdc0ff1ceaa1.js","177","static/chunks/app/layout-51e57d53a74eca29.js"],"async":false},"/home/runner/actions-runner/_work/react-email/react-email/node_modules/.pnpm/next@15.3.2_@babel+core@7.26.10_react-dom@19.0.0_react@19.0.0__react@19.0.0/node_modules/next/font/local/target.css?{\"path\":\"src/app/fonts.ts\",\"import\":\"\",\"arguments\":[{\"src\":[{\"path\":\"./fonts/SFMono/SFMonoLight.otf\",\"weight\":\"300\"},{\"path\":\"./fonts/SFMono/SFMonoRegular.otf\",\"weight\":\"400\"},{\"path\":\"./fonts/SFMono/SFMonoMedium.otf\",\"weight\":\"500\"},{\"path\":\"./fonts/SFMono/SFMonoSemibold.otf\",\"weight\":\"600\"},{\"path\":\"./fonts/SFMono/SFMonoBold.otf\",\"weight\":\"700\"},{\"path\":\"./fonts/SFMono/SFMonoHeavy.otf\",\"weight\":\"800\"}],\"variable\":\"--font-sf-mono\",\"display\":\"swap\"}],\"variableName\":\"sfMono\"}":{"id":7109,"name":"*","chunks":["336","static/chunks/336-0767fdc0ff1ceaa1.js","177","static/chunks/app/layout-51e57d53a74eca29.js"],"async":false},"/home/runner/actions-runner/_work/react-email/react-email/packages/preview-server/src/contexts/emails.tsx":{"id":2816,"name":"*","chunks":["336","static/chunks/336-0767fdc0ff1ceaa1.js","177","static/chunks/app/layout-51e57d53a74eca29.js"],"async":false},"/home/runner/actions-runner/_work/react-email/react-email/node_modules/.pnpm/next@15.3.2_@babel+core@7.26.10_react-dom@19.0.0_react@19.0.0__react@19.0.0/node_modules/next/dist/client/app-dir/link.js":{"id":3397,"name":"*","chunks":["979","static/chunks/f33a14d2-188715a58266ac15.js","336","static/chunks/336-0767fdc0ff1ceaa1.js","713","static/chunks/713-6c7607cb54b8278e.js","551","static/chunks/551-d9ce0a77591e6bf7.js","651","static/chunks/651-ca7523b84c3a84c4.js","974","static/chunks/app/page-ddc5b5b5b8d2de0e.js"],"async":false},"/home/runner/actions-runner/_work/react-email/react-email/node_modules/.pnpm/next@15.3.2_@babel+core@7.26.10_react-dom@19.0.0_react@19.0.0__react@19.0.0/node_modules/next/dist/esm/client/app-dir/link.js":{"id":3397,"name":"*","chunks":["979","static/chunks/f33a14d2-188715a58266ac15.js","336","static/chunks/336-0767fdc0ff1ceaa1.js","713","static/chunks/713-6c7607cb54b8278e.js","551","static/chunks/551-d9ce0a77591e6bf7.js","651","static/chunks/651-ca7523b84c3a84c4.js","974","static/chunks/app/page-ddc5b5b5b8d2de0e.js"],"async":false},"/home/runner/actions-runner/_work/react-email/react-email/node_modules/.pnpm/next@15.3.2_@babel+core@7.26.10_react-dom@19.0.0_react@19.0.0__react@19.0.0/node_modules/next/dist/client/image-component.js":{"id":1551,"name":"*","chunks":["979","static/chunks/f33a14d2-188715a58266ac15.js","336","static/chunks/336-0767fdc0ff1ceaa1.js","713","static/chunks/713-6c7607cb54b8278e.js","551","static/chunks/551-d9ce0a77591e6bf7.js","651","static/chunks/651-ca7523b84c3a84c4.js","974","static/chunks/app/page-ddc5b5b5b8d2de0e.js"],"async":false},"/home/runner/actions-runner/_work/react-email/react-email/node_modules/.pnpm/next@15.3.2_@babel+core@7.26.10_react-dom@19.0.0_react@19.0.0__react@19.0.0/node_modules/next/dist/esm/client/image-component.js":{"id":1551,"name":"*","chunks":["979","static/chunks/f33a14d2-188715a58266ac15.js","336","static/chunks/336-0767fdc0ff1ceaa1.js","713","static/chunks/713-6c7607cb54b8278e.js","551","static/chunks/551-d9ce0a77591e6bf7.js","651","static/chunks/651-ca7523b84c3a84c4.js","974","static/chunks/app/page-ddc5b5b5b8d2de0e.js"],"async":false},"/home/runner/actions-runner/_work/react-email/react-email/packages/preview-server/src/app/logo.png":{"id":271,"name":"*","chunks":["979","static/chunks/f33a14d2-188715a58266ac15.js","336","static/chunks/336-0767fdc0ff1ceaa1.js","713","static/chunks/713-6c7607cb54b8278e.js","551","static/chunks/551-d9ce0a77591e6bf7.js","651","static/chunks/651-ca7523b84c3a84c4.js","974","static/chunks/app/page-ddc5b5b5b8d2de0e.js"],"async":false},"/home/runner/actions-runner/_work/react-email/react-email/packages/preview-server/src/components/button.tsx":{"id":170,"name":"*","chunks":["979","static/chunks/f33a14d2-188715a58266ac15.js","336","static/chunks/336-0767fdc0ff1ceaa1.js","713","static/chunks/713-6c7607cb54b8278e.js","551","static/chunks/551-d9ce0a77591e6bf7.js","651","static/chunks/651-ca7523b84c3a84c4.js","974","static/chunks/app/page-ddc5b5b5b8d2de0e.js"],"async":false},"/home/runner/actions-runner/_work/react-email/react-email/packages/preview-server/src/components/code.tsx":{"id":8474,"name":"*","chunks":["979","static/chunks/f33a14d2-188715a58266ac15.js","336","static/chunks/336-0767fdc0ff1ceaa1.js","713","static/chunks/713-6c7607cb54b8278e.js","551","static/chunks/551-d9ce0a77591e6bf7.js","651","static/chunks/651-ca7523b84c3a84c4.js","974","static/chunks/app/page-ddc5b5b5b8d2de0e.js"],"async":false},"/home/runner/actions-runner/_work/react-email/react-email/packages/preview-server/src/components/shell.tsx":{"id":7662,"name":"*","chunks":["979","static/chunks/f33a14d2-188715a58266ac15.js","336","static/chunks/336-0767fdc0ff1ceaa1.js","713","static/chunks/713-6c7607cb54b8278e.js","188","static/chunks/188-e278e5f1e9c4067e.js","651","static/chunks/651-ca7523b84c3a84c4.js","719","static/chunks/app/preview/%5B...slug%5D/page-8ac2b346f388df3e.js"],"async":false},"/home/runner/actions-runner/_work/react-email/react-email/packages/preview-server/src/components/sidebar/sidebar.tsx":{"id":4106,"name":"*","chunks":["979","static/chunks/f33a14d2-188715a58266ac15.js","336","static/chunks/336-0767fdc0ff1ceaa1.js","713","static/chunks/713-6c7607cb54b8278e.js","551","static/chunks/551-d9ce0a77591e6bf7.js","651","static/chunks/651-ca7523b84c3a84c4.js","974","static/chunks/app/page-ddc5b5b5b8d2de0e.js"],"async":false},"/home/runner/actions-runner/_work/react-email/react-email/packages/preview-server/src/components/topbar.tsx":{"id":1735,"name":"*","chunks":["979","static/chunks/f33a14d2-188715a58266ac15.js","336","static/chunks/336-0767fdc0ff1ceaa1.js","713","static/chunks/713-6c7607cb54b8278e.js","551","static/chunks/551-d9ce0a77591e6bf7.js","651","static/chunks/651-ca7523b84c3a84c4.js","974","static/chunks/app/page-ddc5b5b5b8d2de0e.js"],"async":false},"/home/runner/actions-runner/_work/react-email/react-email/packages/preview-server/src/app/preview/[...slug]/preview.tsx":{"id":626,"name":"*","chunks":["979","static/chunks/f33a14d2-188715a58266ac15.js","336","static/chunks/336-0767fdc0ff1ceaa1.js","713","static/chunks/713-6c7607cb54b8278e.js","188","static/chunks/188-e278e5f1e9c4067e.js","651","static/chunks/651-ca7523b84c3a84c4.js","719","static/chunks/app/preview/%5B...slug%5D/page-8ac2b346f388df3e.js"],"async":false},"/home/runner/actions-runner/_work/react-email/react-email/packages/preview-server/src/components/toolbar.tsx":{"id":266,"name":"*","chunks":["979","static/chunks/f33a14d2-188715a58266ac15.js","336","static/chunks/336-0767fdc0ff1ceaa1.js","713","static/chunks/713-6c7607cb54b8278e.js","188","static/chunks/188-e278e5f1e9c4067e.js","651","static/chunks/651-ca7523b84c3a84c4.js","719","static/chunks/app/preview/%5B...slug%5D/page-8ac2b346f388df3e.js"],"async":false},"/home/runner/actions-runner/_work/react-email/react-email/packages/preview-server/src/contexts/preview.tsx":{"id":8137,"name":"*","chunks":["979","static/chunks/f33a14d2-188715a58266ac15.js","336","static/chunks/336-0767fdc0ff1ceaa1.js","713","static/chunks/713-6c7607cb54b8278e.js","188","static/chunks/188-e278e5f1e9c4067e.js","651","static/chunks/651-ca7523b84c3a84c4.js","719","static/chunks/app/preview/%5B...slug%5D/page-8ac2b346f388df3e.js"],"async":false}},"entryCSSFiles":{"/home/runner/actions-runner/_work/react-email/react-email/packages/preview-server/src/":[],"/home/runner/actions-runner/_work/react-email/react-email/packages/preview-server/src/app/layout":[{"inlined":false,"path":"static/css/ac3decd5d6736fbe.css"}],"/home/runner/actions-runner/_work/react-email/react-email/packages/preview-server/src/app/page":[],"/home/runner/actions-runner/_work/react-email/react-email/packages/preview-server/src/app/preview/[...slug]/page":[]},"rscModuleMapping":{"170":{"*":{"id":"86566","name":"*","chunks":[],"async":false}},"266":{"*":{"id":"67325","name":"*","chunks":[],"async":false}},"271":{"*":{"id":"64622","name":"*","chunks":[],"async":false}},"626":{"*":{"id":"6110","name":"*","chunks":[],"async":false}},"887":{"*":{"id":"56131","name":"*","chunks":[],"async":false}},"1551":{"*":{"id":"64269","name":"*","chunks":[],"async":false}},"1735":{"*":{"id":"26382","name":"*","chunks":[],"async":false}},"2816":{"*":{"id":"79661","name":"*","chunks":[],"async":false}},"3397":{"*":{"id":"17494","name":"*","chunks":[],"async":false}},"3478":{"*":{"id":"92346","name":"*","chunks":[],"async":false}},"4106":{"*":{"id":"32109","name":"*","chunks":[],"async":false}},"5559":{"*":{"id":"20077","name":"*","chunks":[],"async":false}},"5950":{"*":{"id":"49920","name":"*","chunks":[],"async":false}},"6593":{"*":{"id":"43825","name":"*","chunks":[],"async":false}},"7115":{"*":{"id":"20499","name":"*","chunks":[],"async":false}},"7570":{"*":{"id":"54748","name":"*","chunks":[],"async":false}},"7662":{"*":{"id":"11146","name":"*","chunks":[],"async":false}},"8007":{"*":{"id":"65627","name":"*","chunks":[],"async":false}},"8137":{"*":{"id":"23116","name":"*","chunks":[],"async":false}},"8326":{"*":{"id":"84491","name":"*","chunks":[],"async":false}},"8474":{"*":{"id":"18597","name":"*","chunks":[],"async":false}}},"edgeRscModuleMapping":{"887":{"*":{"id":"6101","name":"*","chunks":[],"async":false}},"1551":{"*":{"id":"25515","name":"*","chunks":[],"async":false}},"3397":{"*":{"id":"21032","name":"*","chunks":[],"async":false}},"3478":{"*":{"id":"22316","name":"*","chunks":[],"async":false}},"5559":{"*":{"id":"75123","name":"*","chunks":[],"async":false}},"5950":{"*":{"id":"43426","name":"*","chunks":[],"async":false}},"7115":{"*":{"id":"19217","name":"*","chunks":[],"async":false}},"7570":{"*":{"id":"14882","name":"*","chunks":[],"async":false}},"8007":{"*":{"id":"1449","name":"*","chunks":[],"async":false}},"8326":{"*":{"id":"77729","name":"*","chunks":[],"async":false}}}}
|