Skip to content

Conversation

Copy link
Contributor

Copilot AI commented Oct 26, 2025

Implements Progressive Web App functionality to enable offline access and mobile home screen installation.

Changes

PWA Configuration

  • Added vite-plugin-pwa with Workbox for service worker generation
  • Configured manifest with app metadata (name, icons, theme colors, display mode)
  • Reused existing PWA-ready icons (android-chrome, apple-touch-icon, safari-pinned-tab)

Service Worker Setup

  • Inline registration script in HTML head with error handling
  • Auto-update strategy for seamless version updates
  • Workbox precaching for static assets: **/*.{css,js,html,svg,png,ico,txt,woff2}

Technical Notes

  • Uses vite-plugin-pwa directly instead of @vite-pwa/vitepress wrapper (better compatibility with VitePress v2 alpha)
  • Generates manifest.webmanifest (531B), sw.js (13KB), workbox runtime (15KB)
  • Service worker scope: /, display: standalone
// .vitepress/config.ts
head: [
  ["link", { rel: "manifest", href: "/manifest.webmanifest" }],
  ["script", {}, "if('serviceWorker' in navigator) { ... }"]
],
vite: {
  plugins: [VitePWA({ manifest: {...}, workbox: {...} })]
}

Users can now install the blog as a home screen app and access content offline after initial visit.

Original prompt

This section details on the original issue you should resolve

<issue_title>添加 pwa 支持</issue_title>
<issue_description>如题,在手机上我们通常用 APP 能体验到更好的效果,因此希望能够添加 pwa 支持

可以先进行调研,查看工作量,然后进行实际修改</issue_description>

Comments on the Issue (you are @copilot in this section)


✨ Let Copilot coding agent set things up for you — coding agent works faster and does higher quality work when set up for your repo.

@vercel
Copy link

vercel bot commented Oct 26, 2025

The latest updates on your projects. Learn more about Vercel for GitHub.

Project Deployment Preview Comments Updated (UTC)
shellraining-blog Ready Ready Preview Comment Oct 26, 2025 5:42am

@shellRaining
Copy link
Owner

shellRaining commented Oct 26, 2025

构建时出现下面的问题 @copilot

13:21:03.192 Running build in Washington, D.C., USA (East) – iad1
13:21:03.193 Build machine configuration: 2 cores, 8 GB
13:21:03.368 Cloning github.com/shellRaining/shellRaining-blog (Branch: copilot/add-pwa-support, Commit: 260ecb6)
13:21:04.488 Cloning completed: 1.120s
13:21:04.799 Restored build cache from previous deployment (Cz8iAuktMRSPsguoMJ1ZqzuxNAn3)
13:21:05.409 Running "vercel build"
13:21:06.377 Vercel CLI 48.6.0
13:21:07.021 Detected `pnpm-lock.yaml` 9 which may be generated by [email protected] or [email protected]
13:21:07.021 Using [email protected] based on project creation date
13:21:07.022 To use [email protected], manually opt in using corepack (https://vercel.com/docs/deployments/configure-a-build#corepack)
13:21:07.045 Installing dependencies...
13:21:07.598 Scope: all 3 workspace projects
13:21:07.813 Lockfile is up to date, resolution step is skipped
13:21:07.991 Progress: resolved 1, reused 0, downloaded 0, added 0
13:21:08.090 Packages: +267
13:21:08.090 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
13:21:08.997 Progress: resolved 267, reused 0, downloaded 57, added 16
13:21:10.000 Progress: resolved 267, reused 0, downloaded 227, added 86
13:21:10.770 Progress: resolved 267, reused 0, downloaded 267, added 267, done
13:21:11.813 
13:21:11.813 ╭ Warning ─────────────────────────────────────────────────────────────────────╮
13:21:11.813 │                                                                              │
13:21:11.814 │   Ignored build scripts: exifreader, sharp.                                  │
13:21:11.814 │   Run "pnpm approve-builds" to pick which dependencies should be allowed     │
13:21:11.814 │   to run scripts.                                                            │
13:21:11.814 │                                                                              │
13:21:11.814 ╰──────────────────────────────────────────────────────────────────────────────╯
13:21:11.814 
13:21:11.835 Done in 4.6s using pnpm v10.18.2
13:21:11.867 Running "pnpm run build"
13:21:12.153 
13:21:12.154 > [email protected] build /vercel/path0
13:21:12.154 > pnpm run check:content && lerna run build --scope @shellraining/theme && lerna run build --scope @shellraining/content
13:21:12.155 
13:21:12.435 
13:21:12.436 > [email protected] check:content /vercel/path0
13:21:12.437 > bun run ./tooling/check-content.ts
13:21:12.437 
13:21:13.663 lerna notice cli v8.2.4
13:21:14.185 lerna info versioning independent
13:21:14.186 lerna info ci enabled
13:21:14.186 lerna notice filter including "@shellraining/theme"
13:21:14.187 lerna info filter [ '@shellraining/theme' ]
13:21:14.271 
13:21:14.272 > @shellraining/theme:build
13:21:14.272 
13:21:15.025 > @shellraining/[email protected] build /vercel/path0/packages/theme
13:21:15.026 > rm -rf ./dist/ && NODE_ENV=production rolldown -c ./rolldown.config.ts
13:21:19.368 (typescript plugin) src/node/plugins/font.ts (19:10) @rollup/plugin-typescript TS6133: 'logger' is declared but its value is never read.
13:21:19.369 (typescript plugin) src/node/plugins/font.ts (19:18) @rollup/plugin-typescript TS6133: 'LogLevels' is declared but its value is never read.
13:21:19.369 (typescript plugin) src/node/plugins/link-card-preload.ts (5:10) @rollup/plugin-typescript TS6133: 'logger' is declared but its value is never read.
13:21:19.370 (typescript plugin) src/node/plugins/link-card-preload.ts (5:18) @rollup/plugin-typescript TS6133: 'LogLevels' is declared but its value is never read.
13:21:19.370 (typescript plugin) src/node/plugins/photo-thumbhash.ts (6:18) @rollup/plugin-typescript TS6133: 'LogLevels' is declared but its value is never read.
13:21:19.371 (typescript plugin) src/node/plugins/rss.ts (8:10) @rollup/plugin-typescript TS6133: 'logger' is declared but its value is never read.
13:21:19.371 (typescript plugin) src/node/plugins/rss.ts (8:18) @rollup/plugin-typescript TS6133: 'LogLevels' is declared but its value is never read.
13:21:19.372 (typescript plugin) src/node/utils/image-size-detector.ts (1:1) @rollup/plugin-typescript TS6133: 'fs' is declared but its value is never read.
13:21:19.372 (typescript plugin) src/node/utils/og-parser.ts (1:1) @rollup/plugin-typescript TS6133: 'fs' is declared but its value is never read.
13:21:19.493 [log] �[2m<DIR>/�[22m�[32mplugins/font.d.ts               �[39m�[2masset�[22m�[2m │ size: 0.04 kB�[22m
13:21:19.493 [log] �[2m<DIR>/�[22m�[32mconf/head.d.ts                  �[39m�[2masset�[22m�[2m │ size: 0.09 kB�[22m
13:21:19.494 [log] �[2m<DIR>/�[22m�[32mplugins/build-logger.d.ts       �[39m�[2masset�[22m�[2m │ size: 0.10 kB�[22m
13:21:19.494 [log] �[2m<DIR>/�[22m�[32mconf/markdown.d.ts              �[39m�[2masset�[22m�[2m │ size: 0.10 kB�[22m
13:21:19.495 [log] �[2m<DIR>/�[22m�[32minjectVersion.d.ts              �[39m�[2masset�[22m�[2m │ size: 0.21 kB�[22m
13:21:19.496 [log] �[2m<DIR>/�[22m�[32mplugins/mermaid.d.ts            �[39m�[2masset�[22m�[2m │ size: 0.21 kB�[22m
13:21:19.496 [log] �[2m<DIR>/�[22m�[32mplugins/link-card-preload.d.ts  �[39m�[2masset�[22m�[2m │ size: 0.27 kB�[22m
13:21:19.496 [log] �[2m<DIR>/�[22m�[32mloader/posts.data.d.ts          �[39m�[2masset�[22m�[2m │ size: 0.29 kB�[22m
13:21:19.497 [log] �[2m<DIR>/�[22m�[32mutils/image-size-detector.d.ts  �[39m�[2masset�[22m�[2m │ size: 0.30 kB�[22m
13:21:19.497 [log] �[2m<DIR>/�[22m�[32mutils/og-parser.d.ts            �[39m�[2masset�[22m�[2m │ size: 0.36 kB�[22m
13:21:19.497 [log] �[2m<DIR>/�[22m�[32mplugins/photo-thumbhash.d.ts    �[39m�[2masset�[22m�[2m │ size: 0.44 kB�[22m
13:21:19.497 [log] �[2m<DIR>/�[22m�[32mconfig.d.ts                     �[39m�[2masset�[22m�[2m │ size: 0.44 kB�[22m
13:21:19.497 [log] �[2m<DIR>/�[22m�[32mplugins/lazy-image.d.ts         �[39m�[2masset�[22m�[2m │ size: 0.45 kB�[22m
13:21:19.498 [log] �[2m<DIR>/�[22m�[32mutils/thumbhash-generator.d.ts  �[39m�[2masset�[22m�[2m │ size: 0.56 kB�[22m
13:21:19.498 [log] �[2m<DIR>/�[22m�[32mloader/series.data.d.ts         �[39m�[2masset�[22m�[2m │ size: 0.57 kB�[22m
13:21:19.498 [log] �[2m<DIR>/�[22m�[32mplugins/link-card.d.ts          �[39m�[2masset�[22m�[2m │ size: 0.62 kB�[22m
13:21:19.498 [log] �[2m<DIR>/�[22m�[32mplugins/rss.d.ts                �[39m�[2masset�[22m�[2m │ size: 0.80 kB�[22m
13:21:19.498 [log] �[2m<DIR>/�[22m�[32mutils/logger.d.ts               �[39m�[2masset�[22m�[2m │ size: 0.95 kB�[22m
13:21:19.499 [log] �[2m<DIR>/�[22m�[32mutils/cache-manager.d.ts        �[39m�[2masset�[22m�[2m │ size: 1.38 kB�[22m
13:21:19.499 [log] �[2m<DIR>/�[22m�[32mfontmin.d.ts                    �[39m�[2masset�[22m�[2m │ size: 1.55 kB�[22m
13:21:19.499 [log] �[2m<DIR>/�[22m�[36mconf/head.js                    �[39m�[2mchunk�[22m�[2m │ size: 0.76 kB�[22m
13:21:19.499 [log] �[2m<DIR>/�[22m�[36mplugins/mermaid.js              �[39m�[2mchunk�[22m�[2m │ size: 0.80 kB�[22m
13:21:19.499 [log] �[2m<DIR>/�[22m�[36minjectVersion.js                �[39m�[2mchunk�[22m�[2m │ size: 0.96 kB�[22m
13:21:19.500 [log] �[2m<DIR>/�[22m�[36mconf/markdown.js                �[39m�[2mchunk�[22m�[2m │ size: 0.97 kB�[22m
13:21:19.500 [log] �[2m<DIR>/�[22m�[36mplugins/link-card-preload.js    �[39m�[2mchunk�[22m�[2m │ size: 0.98 kB�[22m
13:21:19.500 [log] �[2m<DIR>/�[22m�[36mconfig.js                       �[39m�[2mchunk�[22m�[2m │ size: 1.41 kB�[22m
13:21:19.500 [log] �[2m<DIR>/�[22m�[36mplugins/build-logger.js         �[39m�[2mchunk�[22m�[2m │ size: 1.49 kB�[22m
13:21:19.500 [log] �[2m<DIR>/�[22m�[36mutils/image-size-detector.js    �[39m�[2mchunk�[22m�[2m │ size: 1.62 kB�[22m
13:21:19.506 [log] �[2m<DIR>/�[22m�[36mutils/logger.js                 �[39m�[2mchunk�[22m�[2m │ size: 1.67 kB�[22m
13:21:19.506 [log] �[2m<DIR>/�[22m�[36mplugins/lazy-image.js           �[39m�[2mchunk�[22m�[2m │ size: 2.52 kB�[22m
13:21:19.506 [log] �[2m<DIR>/�[22m�[36mfontmin.js                      �[39m�[2mchunk�[22m�[2m │ size: 3.05 kB�[22m
13:21:19.507 [log] �[2m<DIR>/�[22m�[36mutils/og-parser.js              �[39m�[2mchunk�[22m�[2m │ size: 3.41 kB�[22m
13:21:19.507 [log] �[2m<DIR>/�[22m�[36mutils/cache-manager.js          �[39m�[2mchunk�[22m�[2m │ size: 3.94 kB�[22m
13:21:19.507 [log] �[2m<DIR>/�[22m�[36mplugins/link-card.js            �[39m�[2mchunk�[22m�[2m │ size: 4.16 kB�[22m
13:21:19.507 [log] �[2m<DIR>/�[22m�[36mplugins/photo-thumbhash.js      �[39m�[2mchunk�[22m�[2m │ size: 4.55 kB�[22m
13:21:19.507 [log] �[2m<DIR>/�[22m�[36mplugins/font.js                 �[39m�[2mchunk�[22m�[2m │ size: 4.76 kB�[22m
13:21:19.507 [log] �[2m<DIR>/�[22m�[36mutils/thumbhash-generator.js    �[39m�[2mchunk�[22m�[2m │ size: 4.79 kB�[22m
13:21:19.508 [log] �[2m<DIR>/�[22m�[36mplugins/rss.js                  �[39m�[2mchunk�[22m�[2m │ size: 4.93 kB�[22m
13:21:19.508 [log]
13:21:19.508 [success] Finished in �[1m3.78 s�[22m
13:21:19.638 
13:21:19.639 
13:21:19.639 
13:21:19.639  Lerna (powered by Nx)   Successfully ran target build for project @shellraining/theme
13:21:19.639 
13:21:19.639 
13:21:20.620 lerna notice cli v8.2.4
13:21:21.086 lerna info versioning independent
13:21:21.086 lerna info ci enabled
13:21:21.087 lerna notice filter including "@shellraining/content"
13:21:21.087 lerna info filter [ '@shellraining/content' ]
13:21:21.151 
13:21:21.151 > @shellraining/content:build
13:21:21.152 
13:21:21.864 > @shellraining/[email protected] build /vercel/path0/packages/content
13:21:21.864 > vitepress build
13:21:22.495   �[32m�[1mvitepress�[22m v2.0.0-alpha.12�[39m
13:21:22.499 - building client + server bundles...
13:21:32.252 �[33m[plugin vite:resolve] Module "node:path" has been externalized for browser compatibility, imported by "/vercel/path0/node_modules/.pnpm/@[email protected][email protected][email protected]_@[email protected]_terser@5_1a3c41e111c929b24b0486b06ba90f0c/node_modules/@vite-pwa/vitepress/dist/index.mjs". See https://vite.dev/guide/troubleshooting.html#module-externalized-for-browser-compatibility for more details.�[39m
13:21:32.479 �[33m[plugin vite:resolve] Module "node:fs" has been externalized for browser compatibility, imported by "/vercel/path0/node_modules/.pnpm/[email protected][email protected]_@[email protected][email protected][email protected][email protected][email protected]/node_modules/vite-plugin-pwa/dist/index.js". See https://vite.dev/guide/troubleshooting.html#module-externalized-for-browser-compatibility for more details.�[39m
13:21:32.479 �[33m[plugin vite:resolve] Module "node:path" has been externalized for browser compatibility, imported by "/vercel/path0/node_modules/.pnpm/[email protected][email protected]_@[email protected][email protected][email protected][email protected][email protected]/node_modules/vite-plugin-pwa/dist/index.js". See https://vite.dev/guide/troubleshooting.html#module-externalized-for-browser-compatibility for more details.�[39m
13:21:32.479 �[33m[plugin vite:resolve] Module "node:crypto" has been externalized for browser compatibility, imported by "/vercel/path0/node_modules/.pnpm/[email protected][email protected]_@[email protected][email protected][email protected][email protected][email protected]/node_modules/vite-plugin-pwa/dist/index.js". See https://vite.dev/guide/troubleshooting.html#module-externalized-for-browser-compatibility for more details.�[39m
13:21:32.480 �[33m[plugin vite:resolve] Module "node:module" has been externalized for browser compatibility, imported by "/vercel/path0/node_modules/.pnpm/[email protected][email protected]_@[email protected][email protected][email protected][email protected][email protected]/node_modules/vite-plugin-pwa/dist/index.js". See https://vite.dev/guide/troubleshooting.html#module-externalized-for-browser-compatibility for more details.�[39m
13:21:32.480 �[33m[plugin vite:resolve] Module "node:url" has been externalized for browser compatibility, imported by "/vercel/path0/node_modules/.pnpm/[email protected][email protected]_@[email protected][email protected][email protected][email protected][email protected]/node_modules/vite-plugin-pwa/dist/index.js". See https://vite.dev/guide/troubleshooting.html#module-externalized-for-browser-compatibility for more details.�[39m
13:21:32.481 �[33m[plugin vite:resolve] Module "node:process" has been externalized for browser compatibility, imported by "/vercel/path0/node_modules/.pnpm/[email protected][email protected]_@[email protected][email protected][email protected][email protected][email protected]/node_modules/vite-plugin-pwa/dist/index.js". See https://vite.dev/guide/troubleshooting.html#module-externalized-for-browser-compatibility for more details.�[39m
13:21:32.689 �[33m[plugin vite:resolve] Module "node:path" has been externalized for browser compatibility, imported by "/vercel/path0/node_modules/.pnpm/[email protected][email protected]_@[email protected][email protected][email protected][email protected][email protected]/node_modules/vite-plugin-pwa/dist/chunk-G4TAN34B.js". See https://vite.dev/guide/troubleshooting.html#module-externalized-for-browser-compatibility for more details.�[39m
13:21:32.718 �[33m[plugin vite:resolve] Module "node:fs/promises" has been externalized for browser compatibility, imported by "/vercel/path0/node_modules/.pnpm/[email protected][email protected]_@[email protected][email protected][email protected][email protected][email protected]/node_modules/vite-plugin-pwa/dist/generator-Q3R7VIEH.js". See https://vite.dev/guide/troubleshooting.html#module-externalized-for-browser-compatibility for more details.�[39m
13:21:32.720 �[33m[plugin vite:resolve] Module "node:fs" has been externalized for browser compatibility, imported by "/vercel/path0/node_modules/.pnpm/[email protected][email protected]_@[email protected][email protected][email protected][email protected][email protected]/node_modules/vite-plugin-pwa/dist/generator-Q3R7VIEH.js". See https://vite.dev/guide/troubleshooting.html#module-externalized-for-browser-compatibility for more details.�[39m
13:21:32.721 �[33m[plugin vite:resolve] Module "node:path" has been externalized for browser compatibility, imported by "/vercel/path0/node_modules/.pnpm/[email protected][email protected]_@[email protected][email protected][email protected][email protected][email protected]/node_modules/vite-plugin-pwa/dist/generator-Q3R7VIEH.js". See https://vite.dev/guide/troubleshooting.html#module-externalized-for-browser-compatibility for more details.�[39m
13:21:32.740 �[33m[plugin vite:resolve] Module "fs" has been externalized for browser compatibility, imported by "/vercel/path0/node_modules/.pnpm/[email protected]/node_modules/tinyglobby/dist/index.mjs". See https://vite.dev/guide/troubleshooting.html#module-externalized-for-browser-compatibility for more details.�[39m
13:21:32.740 �[33m[plugin vite:resolve] Module "path" has been externalized for browser compatibility, imported by "/vercel/path0/node_modules/.pnpm/[email protected]/node_modules/tinyglobby/dist/index.mjs". See https://vite.dev/guide/troubleshooting.html#module-externalized-for-browser-compatibility for more details.�[39m
13:21:32.740 �[33m[plugin vite:resolve] Module "url" has been externalized for browser compatibility, imported by "/vercel/path0/node_modules/.pnpm/[email protected]/node_modules/tinyglobby/dist/index.mjs". See https://vite.dev/guide/troubleshooting.html#module-externalized-for-browser-compatibility for more details.�[39m
13:21:32.743 �[33m[plugin vite:resolve] Module "node:fs" has been externalized for browser compatibility, imported by "/vercel/path0/node_modules/.pnpm/[email protected][email protected]_@[email protected][email protected][email protected][email protected][email protected]/node_modules/vite-plugin-pwa/dist/vite-build-BGK4YAIU.js". See https://vite.dev/guide/troubleshooting.html#module-externalized-for-browser-compatibility for more details.�[39m
13:21:32.743 �[33m[plugin vite:resolve] Module "node:path" has been externalized for browser compatibility, imported by "/vercel/path0/node_modules/.pnpm/[email protected][email protected]_@[email protected][email protected][email protected][email protected][email protected]/node_modules/vite-plugin-pwa/dist/vite-build-BGK4YAIU.js". See https://vite.dev/guide/troubleshooting.html#module-externalized-for-browser-compatibility for more details.�[39m
13:21:32.771 �[33m[plugin vite:resolve] Module "assert" has been externalized for browser compatibility, imported by "/vercel/path0/node_modules/.pnpm/[email protected]/node_modules/workbox-build/build/lib/cdn-utils.js". See https://vite.dev/guide/troubleshooting.html#module-externalized-for-browser-compatibility for more details.�[39m
13:21:32.780 �[33m[plugin vite:resolve] Module "assert" has been externalized for browser compatibility, imported by "/vercel/path0/node_modules/.pnpm/[email protected]/node_modules/workbox-build/build/inject-manifest.js". See https://vite.dev/guide/troubleshooting.html#module-externalized-for-browser-compatibility for more details.�[39m
13:21:33.198 �[33m[plugin vite:resolve] Module "module" has been externalized for browser compatibility, imported by "/vercel/path0/node_modules/.pnpm/[email protected][email protected]/node_modules/fdir/dist/index.mjs". See https://vite.dev/guide/troubleshooting.html#module-externalized-for-browser-compatibility for more details.�[39m
13:21:33.203 �[33m[plugin vite:resolve] Module "path" has been externalized for browser compatibility, imported by "/vercel/path0/node_modules/.pnpm/[email protected][email protected]/node_modules/fdir/dist/index.mjs". See https://vite.dev/guide/troubleshooting.html#module-externalized-for-browser-compatibility for more details.�[39m
13:21:33.203 �[33m[plugin vite:resolve] Module "fs" has been externalized for browser compatibility, imported by "/vercel/path0/node_modules/.pnpm/[email protected][email protected]/node_modules/fdir/dist/index.mjs". See https://vite.dev/guide/troubleshooting.html#module-externalized-for-browser-compatibility for more details.�[39m
13:21:33.225 �[33m[plugin vite:resolve] Module "fs" has been externalized for browser compatibility, imported by "/vercel/path0/node_modules/.pnpm/[email protected]/node_modules/fs-extra/lib/index.js". See https://vite.dev/guide/troubleshooting.html#module-externalized-for-browser-compatibility for more details.�[39m
13:21:33.229 �[33m[plugin vite:resolve] Module "path" has been externalized for browser compatibility, imported by "/vercel/path0/node_modules/.pnpm/[email protected]/node_modules/upath/build/code/upath.js". See https://vite.dev/guide/troubleshooting.html#module-externalized-for-browser-compatibility for more details.�[39m
13:21:33.246 �[33m[plugin vite:resolve] Module "assert" has been externalized for browser compatibility, imported by "/vercel/path0/node_modules/.pnpm/[email protected]/node_modules/workbox-build/build/lib/get-file-manifest-entries.js". See https://vite.dev/guide/troubleshooting.html#module-externalized-for-browser-compatibility for more details.�[39m
13:21:33.397 �[33m[plugin vite:resolve] Module "path" has been externalized for browser compatibility, imported by "/vercel/path0/node_modules/.pnpm/[email protected]/node_modules/fs-extra/lib/empty/index.js". See https://vite.dev/guide/troubleshooting.html#module-externalized-for-browser-compatibility for more details.�[39m
13:21:33.411 �[33m[plugin vite:resolve] Module "path" has been externalized for browser compatibility, imported by "/vercel/path0/node_modules/.pnpm/[email protected]/node_modules/fs-extra/lib/output/index.js". See https://vite.dev/guide/troubleshooting.html#module-externalized-for-browser-compatibility for more details.�[39m
13:21:33.417 �[33m[plugin vite:resolve] Module "crypto" has been externalized for browser compatibility, imported by "/vercel/path0/node_modules/.pnpm/[email protected]/node_modules/workbox-build/build/lib/get-composite-details.js". See https://vite.dev/guide/troubleshooting.html#module-externalized-for-browser-compatibility for more details.�[39m
13:21:33.479 �[33m[plugin vite:resolve] Module "node:path" has been externalized for browser compatibility, imported by "/vercel/path0/node_modules/.pnpm/[email protected]/node_modules/rollup/dist/es/parseAst.js". See https://vite.dev/guide/troubleshooting.html#module-externalized-for-browser-compatibility for more details.�[39m
13:21:33.578 �[33m[plugin vite:resolve] Module "fs" has been externalized for browser compatibility, imported by "/vercel/path0/node_modules/.pnpm/[email protected]/node_modules/esbuild/lib/main.js". See https://vite.dev/guide/troubleshooting.html#module-externalized-for-browser-compatibility for more details.�[39m
13:21:33.579 �[33m[plugin vite:resolve] Module "os" has been externalized for browser compatibility, imported by "/vercel/path0/node_modules/.pnpm/[email protected]/node_modules/esbuild/lib/main.js". See https://vite.dev/guide/troubleshooting.html#module-externalized-for-browser-compatibility for more details.�[39m
13:21:33.580 �[33m[plugin vite:resolve] Module "path" has been externalized for browser compatibility, imported by "/vercel/path0/node_modules/.pnpm/[email protected]/node_modules/esbuild/lib/main.js". See https://vite.dev/guide/troubleshooting.html#module-externalized-for-browser-compatibility for more details.�[39m
13:21:33.580 �[33m[plugin vite:resolve] Module "child_process" has been externalized for browser compatibility, imported by "/vercel/path0/node_modules/.pnpm/[email protected]/node_modules/esbuild/lib/main.js". See https://vite.dev/guide/troubleshooting.html#module-externalized-for-browser-compatibility for more details.�[39m
13:21:33.580 �[33m[plugin vite:resolve] Module "crypto" has been externalized for browser compatibility, imported by "/vercel/path0/node_modules/.pnpm/[email protected]/node_modules/esbuild/lib/main.js". See https://vite.dev/guide/troubleshooting.html#module-externalized-for-browser-compatibility for more details.�[39m
13:21:33.580 �[33m[plugin vite:resolve] Module "tty" has been externalized for browser compatibility, imported by "/vercel/path0/node_modules/.pnpm/[email protected]/node_modules/esbuild/lib/main.js". See https://vite.dev/guide/troubleshooting.html#module-externalized-for-browser-compatibility for more details.�[39m
13:21:33.582 �[33m[plugin vite:resolve] Module "worker_threads" has been externalized for browser compatibility, imported by "/vercel/path0/node_modules/.pnpm/[email protected]/node_modules/esbuild/lib/main.js". See https://vite.dev/guide/troubleshooting.html#module-externalized-for-browser-compatibility for more details.�[39m
13:21:33.702 new URL("../../../src/node/constants.ts", import.meta.url) doesn't exist at build time, it will remain unchanged to be resolved at runtime. If this is intended, you can use the /* @vite-ignore */ comment to suppress this warning.
13:21:33.811 �[33m[plugin vite:resolve] Module "path" has been externalized for browser compatibility, imported by "/vercel/path0/node_modules/.pnpm/[email protected]/node_modules/fs-extra/lib/copy-sync/copy-sync.js". See https://vite.dev/guide/troubleshooting.html#module-externalized-for-browser-compatibility for more details.�[39m
13:21:33.818 �[33m[plugin vite:resolve] Module "path" has been externalized for browser compatibility, imported by "/vercel/path0/node_modules/.pnpm/[email protected]/node_modules/fs-extra/lib/copy/copy.js". See https://vite.dev/guide/troubleshooting.html#module-externalized-for-browser-compatibility for more details.�[39m
13:21:33.821 �[33m[plugin vite:resolve] Module "path" has been externalized for browser compatibility, imported by "/vercel/path0/node_modules/.pnpm/[email protected]/node_modules/fs-extra/lib/ensure/file.js". See https://vite.dev/guide/troubleshooting.html#module-externalized-for-browser-compatibility for more details.�[39m
13:21:33.825 �[33m[plugin vite:resolve] Module "path" has been externalized for browser compatibility, imported by "/vercel/path0/node_modules/.pnpm/[email protected]/node_modules/fs-extra/lib/ensure/link.js". See https://vite.dev/guide/troubleshooting.html#module-externalized-for-browser-compatibility for more details.�[39m
13:21:33.826 �[33m[plugin vite:resolve] Module "path" has been externalized for browser compatibility, imported by "/vercel/path0/node_modules/.pnpm/[email protected]/node_modules/fs-extra/lib/ensure/symlink.js". See https://vite.dev/guide/troubleshooting.html#module-externalized-for-browser-compatibility for more details.�[39m
13:21:33.829 �[33m[plugin vite:resolve] Module "path" has been externalized for browser compatibility, imported by "/vercel/path0/node_modules/.pnpm/[email protected]/node_modules/fs-extra/lib/mkdirs/make-dir.js". See https://vite.dev/guide/troubleshooting.html#module-externalized-for-browser-compatibility for more details.�[39m
13:21:33.831 �[33m[plugin vite:resolve] Module "path" has been externalized for browser compatibility, imported by "/vercel/path0/node_modules/.pnpm/[email protected]/node_modules/fs-extra/lib/move-sync/move-sync.js". See https://vite.dev/guide/troubleshooting.html#module-externalized-for-browser-compatibility for more details.�[39m
13:21:33.834 �[33m[plugin vite:resolve] Module "path" has been externalized for browser compatibility, imported by "/vercel/path0/node_modules/.pnpm/[email protected]/node_modules/fs-extra/lib/remove/rimraf.js". See https://vite.dev/guide/troubleshooting.html#module-externalized-for-browser-compatibility for more details.�[39m
13:21:33.834 �[33m[plugin vite:resolve] Module "assert" has been externalized for browser compatibility, imported by "/vercel/path0/node_modules/.pnpm/[email protected]/node_modules/fs-extra/lib/remove/rimraf.js". See https://vite.dev/guide/troubleshooting.html#module-externalized-for-browser-compatibility for more details.�[39m
13:21:33.835 �[33m[plugin vite:resolve] Module "path" has been externalized for browser compatibility, imported by "/vercel/path0/node_modules/.pnpm/[email protected]/node_modules/fs-extra/lib/move/move.js". See https://vite.dev/guide/troubleshooting.html#module-externalized-for-browser-compatibility for more details.�[39m
13:21:33.856 �[33m[plugin vite:resolve] Module "events" has been externalized for browser compatibility, imported by "/vercel/path0/node_modules/.pnpm/[email protected]/node_modules/glob/glob.js". See https://vite.dev/guide/troubleshooting.html#module-externalized-for-browser-compatibility for more details.�[39m
13:21:33.856 �[33m[plugin vite:resolve] Module "path" has been externalized for browser compatibility, imported by "/vercel/path0/node_modules/.pnpm/[email protected]/node_modules/glob/glob.js". See https://vite.dev/guide/troubleshooting.html#module-externalized-for-browser-compatibility for more details.�[39m
13:21:33.857 �[33m[plugin vite:resolve] Module "assert" has been externalized for browser compatibility, imported by "/vercel/path0/node_modules/.pnpm/[email protected]/node_modules/glob/glob.js". See https://vite.dev/guide/troubleshooting.html#module-externalized-for-browser-compatibility for more details.�[39m
13:21:33.858 �[33m[plugin vite:resolve] Module "util" has been externalized for browser compatibility, imported by "/vercel/path0/node_modules/.pnpm/[email protected]/node_modules/glob/glob.js". See https://vite.dev/guide/troubleshooting.html#module-externalized-for-browser-compatibility for more details.�[39m
13:21:33.861 �[33m[plugin vite:resolve] Module "crypto" has been externalized for browser compatibility, imported by "/vercel/path0/node_modules/.pnpm/[email protected]/node_modules/workbox-build/build/lib/get-string-hash.js". See https://vite.dev/guide/troubleshooting.html#module-externalized-for-browser-compatibility for more details.�[39m
13:21:33.937 �[33m[plugin vite:resolve] Module "node:fs" has been externalized for browser compatibility, imported by "/vercel/path0/node_modules/.pnpm/[email protected]_@[email protected][email protected][email protected]/node_modules/vite/dist/node/chunks/dep-SmwnYDP9.js". See https://vite.dev/guide/troubleshooting.html#module-externalized-for-browser-compatibility for more details.�[39m
13:21:33.938 �[33m[plugin vite:resolve] Module "node:path" has been externalized for browser compatibility, imported by "/vercel/path0/node_modules/.pnpm/[email protected]_@[email protected][email protected][email protected]/node_modules/vite/dist/node/chunks/dep-SmwnYDP9.js". See https://vite.dev/guide/troubleshooting.html#module-externalized-for-browser-compatibility for more details.�[39m
13:21:33.938 �[33m[plugin vite:resolve] Module "node:url" has been externalized for browser compatibility, imported by "/vercel/path0/node_modules/.pnpm/[email protected]_@[email protected][email protected][email protected]/node_modules/vite/dist/node/chunks/dep-SmwnYDP9.js". See https://vite.dev/guide/troubleshooting.html#module-externalized-for-browser-compatibility for more details.�[39m
13:21:33.938 �[33m[plugin vite:resolve] Module "node:readline" has been externalized for browser compatibility, imported by "/vercel/path0/node_modules/.pnpm/[email protected]_@[email protected][email protected][email protected]/node_modules/vite/dist/node/chunks/dep-SmwnYDP9.js". See https://vite.dev/guide/troubleshooting.html#module-externalized-for-browser-compatibility for more details.�[39m
13:21:33.945 �[33m[plugin vite:resolve] Module "fs" has been externalized for browser compatibility, imported by "/vercel/path0/node_modules/.pnpm/[email protected]/node_modules/graceful-fs/graceful-fs.js". See https://vite.dev/guide/troubleshooting.html#module-externalized-for-browser-compatibility for more details.�[39m
13:21:33.946 �[33m[plugin vite:resolve] Module "util" has been externalized for browser compatibility, imported by "/vercel/path0/node_modules/.pnpm/[email protected]/node_modules/graceful-fs/graceful-fs.js". See https://vite.dev/guide/troubleshooting.html#module-externalized-for-browser-compatibility for more details.�[39m
13:21:33.946 �[33m[plugin vite:resolve] Module "assert" has been externalized for browser compatibility, imported by "/vercel/path0/node_modules/.pnpm/[email protected]/node_modules/graceful-fs/graceful-fs.js". See https://vite.dev/guide/troubleshooting.html#module-externalized-for-browser-compatibility for more details.�[39m
13:21:33.951 �[33m[plugin vite:resolve] Module "node:fs" has been externalized for browser compatibility, imported by "/vercel/path0/node_modules/.pnpm/[email protected]/node_modules/rollup/dist/native.js". See https://vite.dev/guide/troubleshooting.html#module-externalized-for-browser-compatibility for more details.�[39m
13:21:33.952 �[33m[plugin vite:resolve] Module "node:path" has been externalized for browser compatibility, imported by "/vercel/path0/node_modules/.pnpm/[email protected]/node_modules/rollup/dist/native.js". See https://vite.dev/guide/troubleshooting.html#module-externalized-for-browser-compatibility for more details.�[39m
13:21:33.952 �[33m[plugin vite:resolve] Module "node:process" has been externalized for browser compatibility, imported by "/vercel/path0/node_modules/.pnpm/[email protected]/node_modules/rollup/dist/native.js". See https://vite.dev/guide/troubleshooting.html#module-externalized-for-browser-compatibility for more details.�[39m
13:21:34.031 �[33m[plugin vite:resolve] Module "path" has been externalized for browser compatibility, imported by "/vercel/path0/node_modules/.pnpm/@[email protected][email protected]/node_modules/@rollup/plugin-node-resolve/dist/cjs/index.js". See https://vite.dev/guide/troubleshooting.html#module-externalized-for-browser-compatibility for more details.�[39m
13:21:34.032 �[33m[plugin vite:resolve] Module "module" has been externalized for browser compatibility, imported by "/vercel/path0/node_modules/.pnpm/@[email protected][email protected]/node_modules/@rollup/plugin-node-resolve/dist/cjs/index.js". See https://vite.dev/guide/troubleshooting.html#module-externalized-for-browser-compatibility for more details.�[39m
13:21:34.032 �[33m[plugin vite:resolve] Module "fs" has been externalized for browser compatibility, imported by "/vercel/path0/node_modules/.pnpm/@[email protected][email protected]/node_modules/@rollup/plugin-node-resolve/dist/cjs/index.js". See https://vite.dev/guide/troubleshooting.html#module-externalized-for-browser-compatibility for more details.�[39m
13:21:34.032 �[33m[plugin vite:resolve] Module "util" has been externalized for browser compatibility, imported by "/vercel/path0/node_modules/.pnpm/@[email protected][email protected]/node_modules/@rollup/plugin-node-resolve/dist/cjs/index.js". See https://vite.dev/guide/troubleshooting.html#module-externalized-for-browser-compatibility for more details.�[39m
13:21:34.033 �[33m[plugin vite:resolve] Module "url" has been externalized for browser compatibility, imported by "/vercel/path0/node_modules/.pnpm/@[email protected][email protected]/node_modules/@rollup/plugin-node-resolve/dist/cjs/index.js". See https://vite.dev/guide/troubleshooting.html#module-externalized-for-browser-compatibility for more details.�[39m
13:21:34.398 �[33m[plugin vite:resolve] Module "fs" has been externalized for browser compatibility, imported by "/vercel/path0/node_modules/.pnpm/@[email protected]/node_modules/@surma/rollup-plugin-off-main-thread/index.js". See https://vite.dev/guide/troubleshooting.html#module-externalized-for-browser-compatibility for more details.�[39m
13:21:34.400 �[33m[plugin vite:resolve] Module "path" has been externalized for browser compatibility, imported by "/vercel/path0/node_modules/.pnpm/@[email protected]/node_modules/@surma/rollup-plugin-off-main-thread/index.js". See https://vite.dev/guide/troubleshooting.html#module-externalized-for-browser-compatibility for more details.�[39m
13:21:34.412 �[33m[plugin vite:resolve] Module "worker_threads" has been externalized for browser compatibility, imported by "/vercel/path0/node_modules/.pnpm/@[email protected][email protected]/node_modules/@rollup/plugin-terser/dist/cjs/index.js". See https://vite.dev/guide/troubleshooting.html#module-externalized-for-browser-compatibility for more details.�[39m
13:21:34.413 �[33m[plugin vite:resolve] Module "url" has been externalized for browser compatibility, imported by "/vercel/path0/node_modules/.pnpm/@[email protected][email protected]/node_modules/@rollup/plugin-terser/dist/cjs/index.js". See https://vite.dev/guide/troubleshooting.html#module-externalized-for-browser-compatibility for more details.�[39m
13:21:34.414 �[33m[plugin vite:resolve] Module "async_hooks" has been externalized for browser compatibility, imported by "/vercel/path0/node_modules/.pnpm/@[email protected][email protected]/node_modules/@rollup/plugin-terser/dist/cjs/index.js". See https://vite.dev/guide/troubleshooting.html#module-externalized-for-browser-compatibility for more details.�[39m
13:21:34.414 �[33m[plugin vite:resolve] Module "os" has been externalized for browser compatibility, imported by "/vercel/path0/node_modules/.pnpm/@[email protected][email protected]/node_modules/@rollup/plugin-terser/dist/cjs/index.js". See https://vite.dev/guide/troubleshooting.html#module-externalized-for-browser-compatibility for more details.�[39m
13:21:34.414 �[33m[plugin vite:resolve] Module "events" has been externalized for browser compatibility, imported by "/vercel/path0/node_modules/.pnpm/@[email protected][email protected]/node_modules/@rollup/plugin-terser/dist/cjs/index.js". See https://vite.dev/guide/troubleshooting.html#module-externalized-for-browser-compatibility for more details.�[39m
13:21:34.418 �[33m[plugin vite:resolve] Module "fs" has been externalized for browser compatibility, imported by "/vercel/path0/node_modules/.pnpm/[email protected]/node_modules/tempy/index.js". See https://vite.dev/guide/troubleshooting.html#module-externalized-for-browser-compatibility for more details.�[39m
13:21:34.418 �[33m[plugin vite:resolve] Module "path" has been externalized for browser compatibility, imported by "/vercel/path0/node_modules/.pnpm/[email protected]/node_modules/tempy/index.js". See https://vite.dev/guide/troubleshooting.html#module-externalized-for-browser-compatibility for more details.�[39m
13:21:34.419 �[33m[plugin vite:resolve] Module "stream" has been externalized for browser compatibility, imported by "/vercel/path0/node_modules/.pnpm/[email protected]/node_modules/tempy/index.js". See https://vite.dev/guide/troubleshooting.html#module-externalized-for-browser-compatibility for more details.�[39m
13:21:34.419 �[33m[plugin vite:resolve] Module "util" has been externalized for browser compatibility, imported by "/vercel/path0/node_modules/.pnpm/[email protected]/node_modules/tempy/index.js". See https://vite.dev/guide/troubleshooting.html#module-externalized-for-browser-compatibility for more details.�[39m
13:21:34.464 �[33m[plugin vite:resolve] Module "node:path" has been externalized for browser compatibility, imported by "/vercel/path0/node_modules/.pnpm/[email protected]/node_modules/rollup/dist/es/shared/parseAst.js". See https://vite.dev/guide/troubleshooting.html#module-externalized-for-browser-compatibility for more details.�[39m
13:21:34.782 �[33m[plugin vite:resolve] Module "path" has been externalized for browser compatibility, imported by "/vercel/path0/node_modules/.pnpm/[email protected]/node_modules/fs-extra/lib/util/stat.js". See https://vite.dev/guide/troubleshooting.html#module-externalized-for-browser-compatibility for more details.�[39m
13:21:34.790 �[33m[plugin vite:resolve] Module "util" has been externalized for browser compatibility, imported by "/vercel/path0/node_modules/.pnpm/[email protected]/node_modules/fs-extra/lib/util/stat.js". See https://vite.dev/guide/troubleshooting.html#module-externalized-for-browser-compatibility for more details.�[39m
13:21:34.791 �[33m[plugin vite:resolve] Module "path" has been externalized for browser compatibility, imported by "/vercel/path0/node_modules/.pnpm/[email protected]/node_modules/fs-extra/lib/ensure/symlink-paths.js". See https://vite.dev/guide/troubleshooting.html#module-externalized-for-browser-compatibility for more details.�[39m
13:21:34.792 �[33m[plugin vite:resolve] Module "fs" has been externalized for browser compatibility, imported by "/vercel/path0/node_modules/.pnpm/[email protected]/node_modules/jsonfile/index.js". See https://vite.dev/guide/troubleshooting.html#module-externalized-for-browser-compatibility for more details.�[39m
13:21:34.812 �[33m[plugin vite:resolve] Module "path" has been externalized for browser compatibility, imported by "/vercel/path0/node_modules/.pnpm/[email protected]/node_modules/minimatch/minimatch.js". See https://vite.dev/guide/troubleshooting.html#module-externalized-for-browser-compatibility for more details.�[39m
13:21:34.825 �[33m[plugin vite:resolve] Module "fs" has been externalized for browser compatibility, imported by "/vercel/path0/node_modules/.pnpm/[email protected]/node_modules/fs.realpath/index.js". See https://vite.dev/guide/troubleshooting.html#module-externalized-for-browser-compatibility for more details.�[39m
13:21:34.829 �[33m[plugin vite:resolve] Module "util" has been externalized for browser compatibility, imported by "/vercel/path0/node_modules/.pnpm/[email protected]/node_modules/glob/sync.js". See https://vite.dev/guide/troubleshooting.html#module-externalized-for-browser-compatibility for more details.�[39m
13:21:34.834 �[33m[plugin vite:resolve] Module "path" has been externalized for browser compatibility, imported by "/vercel/path0/node_modules/.pnpm/[email protected]/node_modules/glob/sync.js". See https://vite.dev/guide/troubleshooting.html#module-externalized-for-browser-compatibility for more details.�[39m
13:21:34.836 �[33m[plugin vite:resolve] Module "assert" has been externalized for browser compatibility, imported by "/vercel/path0/node_modules/.pnpm/[email protected]/node_modules/glob/sync.js". See https://vite.dev/guide/troubleshooting.html#module-externalized-for-browser-compatibility for more details.�[39m
13:21:34.851 �[33m[plugin vite:resolve] Module "fs" has been externalized for browser compatibility, imported by "/vercel/path0/node_modules/.pnpm/[email protected]/node_modules/glob/common.js". See https://vite.dev/guide/troubleshooting.html#module-externalized-for-browser-compatibility for more details.�[39m
13:21:34.852 �[33m[plugin vite:resolve] Module "path" has been externalized for browser compatibility, imported by "/vercel/path0/node_modules/.pnpm/[email protected]/node_modules/glob/common.js". See https://vite.dev/guide/troubleshooting.html#module-externalized-for-browser-compatibility for more details.�[39m
13:21:34.928 �[33m[plugin vite:resolve] Module "stream" has been externalized for browser compatibility, imported by "/vercel/path0/node_modules/.pnpm/[email protected]/node_modules/graceful-fs/legacy-streams.js". See https://vite.dev/guide/troubleshooting.html#module-externalized-for-browser-compatibility for more details.�[39m
13:21:35.103 �[33m[plugin vite:resolve] Module "node:module" has been externalized for browser compatibility, imported by "/vercel/path0/node_modules/.pnpm/[email protected]_@[email protected][email protected][email protected]/node_modules/vite/dist/node/chunks/dep-lCKrEJQm.js". See https://vite.dev/guide/troubleshooting.html#module-externalized-for-browser-compatibility for more details.�[39m
13:21:35.119 �[33m[plugin vite:resolve] Module "path" has been externalized for browser compatibility, imported by "/vercel/path0/node_modules/.pnpm/@[email protected][email protected]/node_modules/@rollup/pluginutils/dist/cjs/index.js". See https://vite.dev/guide/troubleshooting.html#module-externalized-for-browser-compatibility for more details.�[39m
13:21:35.183 �[33m[plugin vite:resolve] Module "fs" has been externalized for browser compatibility, imported by "/vercel/path0/node_modules/.pnpm/[email protected]/node_modules/ejs/lib/ejs.js". See https://vite.dev/guide/troubleshooting.html#module-externalized-for-browser-compatibility for more details.�[39m
13:21:35.183 �[33m[plugin vite:resolve] Module "path" has been externalized for browser compatibility, imported by "/vercel/path0/node_modules/.pnpm/[email protected]/node_modules/ejs/lib/ejs.js". See https://vite.dev/guide/troubleshooting.html#module-externalized-for-browser-compatibility for more details.�[39m
13:21:35.224 �[33m[plugin vite:resolve] Module "fs" has been externalized for browser compatibility, imported by "/vercel/path0/node_modules/.pnpm/[email protected]/node_modules/temp-dir/index.js". See https://vite.dev/guide/troubleshooting.html#module-externalized-for-browser-compatibility for more details.�[39m
13:21:35.225 �[33m[plugin vite:resolve] Module "os" has been externalized for browser compatibility, imported by "/vercel/path0/node_modules/.pnpm/[email protected]/node_modules/temp-dir/index.js". See https://vite.dev/guide/troubleshooting.html#module-externalized-for-browser-compatibility for more details.�[39m
13:21:35.384 �[33m[plugin vite:resolve] Module "constants" has been externalized for browser compatibility, imported by "/vercel/path0/node_modules/.pnpm/[email protected]/node_modules/graceful-fs/polyfills.js". See https://vite.dev/guide/troubleshooting.html#module-externalized-for-browser-compatibility for more details.�[39m
13:21:35.441 �[33m[plugin vite:resolve] Module "path" has been externalized for browser compatibility, imported by "/vercel/path0/node_modules/.pnpm/@[email protected][email protected]/node_modules/@rollup/pluginutils/dist/es/index.js". See https://vite.dev/guide/troubleshooting.html#module-externalized-for-browser-compatibility for more details.�[39m
13:21:36.840 �[33m[plugin vite:resolve] Module "fs" has been externalized for browser compatibility, imported by "/vercel/path0/node_modules/.pnpm/[email protected]/node_modules/resolve/lib/async.js". See https://vite.dev/guide/troubleshooting.html#module-externalized-for-browser-compatibility for more details.�[39m
13:21:36.843 �[33m[plugin vite:resolve] Module "path" has been externalized for browser compatibility, imported by "/vercel/path0/node_modules/.pnpm/[email protected]/node_modules/resolve/lib/async.js". See https://vite.dev/guide/troubleshooting.html#module-externalized-for-browser-compatibility for more details.�[39m
13:21:36.864 �[33m[plugin vite:resolve] Module "fs" has been externalized for browser compatibility, imported by "/vercel/path0/node_modules/.pnpm/[email protected]/node_modules/resolve/lib/sync.js". See https://vite.dev/guide/troubleshooting.html#module-externalized-for-browser-compatibility for more details.�[39m
13:21:36.864 �[33m[plugin vite:resolve] Module "path" has been externalized for browser compatibility, imported by "/vercel/path0/node_modules/.pnpm/[email protected]/node_modules/resolve/lib/sync.js". See https://vite.dev/guide/troubleshooting.html#module-externalized-for-browser-compatibility for more details.�[39m
13:21:37.032 �[33m[plugin vite:resolve] Module "path" has been externalized for browser compatibility, imported by "/vercel/path0/node_modules/.pnpm/@[email protected]_@[email protected]/node_modules/@babel/plugin-transform-modules-umd/lib/index.js". See https://vite.dev/guide/troubleshooting.html#module-externalized-for-browser-compatibility for more details.�[39m
13:21:37.086 �[33m[plugin vite:resolve] Module "crypto" has been externalized for browser compatibility, imported by "/vercel/path0/node_modules/.pnpm/[email protected]/node_modules/crypto-random-string/index.js". See https://vite.dev/guide/troubleshooting.html#module-externalized-for-browser-compatibility for more details.�[39m
13:21:37.155 �[33m[plugin vite:resolve] Module "assert" has been externalized for browser compatibility, imported by "/vercel/path0/node_modules/.pnpm/@[email protected]/node_modules/@babel/helper-module-imports/lib/import-injector.js". See https://vite.dev/guide/troubleshooting.html#module-externalized-for-browser-compatibility for more details.�[39m
13:21:37.686 �[33m[plugin vite:resolve] Module "node:module" has been externalized for browser compatibility, imported by "/vercel/path0/node_modules/.pnpm/[email protected]_@[email protected][email protected][email protected]/node_modules/vite/dist/node/chunks/dep-Bm2ujbhY.js". See https://vite.dev/guide/troubleshooting.html#module-externalized-for-browser-compatibility for more details.�[39m
13:21:37.687 �[33m[plugin vite:resolve] Module "node:fs" has been externalized for browser compatibility, imported by "/vercel/path0/node_modules/.pnpm/[email protected]_@[email protected][email protected][email protected]/node_modules/vite/dist/node/chunks/dep-Bm2ujbhY.js". See https://vite.dev/guide/troubleshooting.html#module-externalized-for-browser-compatibility for more details.�[39m
13:21:37.687 �[33m[plugin vite:resolve] Module "node:path" has been externalized for browser compatibility, imported by "/vercel/path0/node_modules/.pnpm/[email protected]_@[email protected][email protected][email protected]/node_modules/vite/dist/node/chunks/dep-Bm2ujbhY.js". See https://vite.dev/guide/troubleshooting.html#module-externalized-for-browser-compatibility for more details.�[39m
13:21:37.687 �[33m[plugin vite:resolve] Module "node:fs/promises" has been externalized for browser compatibility, imported by "/vercel/path0/node_modules/.pnpm/[email protected]_@[email protected][email protected][email protected]/node_modules/vite/dist/node/chunks/dep-Bm2ujbhY.js". See https://vite.dev/guide/troubleshooting.html#module-externalized-for-browser-compatibility for more details.�[39m
13:21:37.688 �[33m[plugin vite:resolve] Module "node:url" has been externalized for browser compatibility, imported by "/vercel/path0/node_modules/.pnpm/[email protected]_@[email protected][email protected][email protected]/node_modules/vite/dist/node/chunks/dep-Bm2ujbhY.js". See https://vite.dev/guide/troubleshooting.html#module-externalized-for-browser-compatibility for more details.�[39m
13:21:37.688 �[33m[plugin vite:resolve] Module "node:util" has been externalized for browser compatibility, imported by "/vercel/path0/node_modules/.pnpm/[email protected]_@[email protected][email protected][email protected]/node_modules/vite/dist/node/chunks/dep-Bm2ujbhY.js". See https://vite.dev/guide/troubleshooting.html#module-externalized-for-browser-compatibility for more details.�[39m
13:21:37.689 �[33m[plugin vite:resolve] Module "node:perf_hooks" has been externalized for browser compatibility, imported by "/vercel/path0/node_modules/.pnpm/[email protected]_@[email protected][email protected][email protected]/node_modules/vite/dist/node/chunks/dep-Bm2ujbhY.js". See https://vite.dev/guide/troubleshooting.html#module-externalized-for-browser-compatibility for more details.�[39m
13:21:37.689 �[33m[plugin vite:resolve] Module "node:crypto" has been externalized for browser compatibility, imported by "/vercel/path0/node_modules/.pnpm/[email protected]_@[email protected][email protected][email protected]/node_modules/vite/dist/node/chunks/dep-Bm2ujbhY.js". See https://vite.dev/guide/troubleshooting.html#module-externalized-for-browser-compatibility for more details.�[39m
13:21:37.689 �[33m[plugin vite:resolve] Module "node:os" has been externalized for browser compatibility, imported by "/vercel/path0/node_modules/.pnpm/[email protected]_@[email protected][email protected][email protected]/node_modules/vite/dist/node/chunks/dep-Bm2ujbhY.js". See https://vite.dev/guide/troubleshooting.html#module-externalized-for-browser-compatibility for more details.�[39m
13:21:37.690 �[33m[plugin vite:resolve] Module "node:net" has been externalized for browser compatibility, imported by "/vercel/path0/node_modules/.pnpm/[email protected]_@[email protected][email protected][email protected]/node_modules/vite/dist/node/chunks/dep-Bm2ujbhY.js". See https://vite.dev/guide/troubleshooting.html#module-externalized-for-browser-compatibility for more details.�[39m
13:21:37.690 �[33m[plugin vite:resolve] Module "node:child_process" has been externalized for browser compatibility, imported by "/vercel/path0/node_modules/.pnpm/[email protected]_@[email protected][email protected][email protected]/node_modules/vite/dist/node/chunks/dep-Bm2ujbhY.js". See https://vite.dev/guide/troubleshooting.html#module-externalized-for-browser-compatibility for more details.�[39m
13:21:37.690 �[33m[plugin vite:resolve] Module "node:dns" has been externalized for browser compatibility, imported by "/vercel/path0/node_modules/.pnpm/[email protected]_@[email protected][email protected][email protected]/node_modules/vite/dist/node/chunks/dep-Bm2ujbhY.js". See https://vite.dev/guide/troubleshooting.html#module-externalized-for-browser-compatibility for more details.�[39m
13:21:37.691 �[33m[plugin vite:resolve] Module "path" has been externalized for browser compatibility, imported by "/vercel/path0/node_modules/.pnpm/[email protected]_@[email protected][email protected][email protected]/node_modules/vite/dist/node/chunks/dep-Bm2ujbhY.js". See https://vite.dev/guide/troubleshooting.html#module-externalized-for-browser-compatibility for more details.�[39m
13:21:37.691 �[33m[plugin vite:resolve] Module "fs" has been externalized for browser compatibility, imported by "/vercel/path0/node_modules/.pnpm/[email protected]_@[email protected][email protected][email protected]/node_modules/vite/dist/node/chunks/dep-Bm2ujbhY.js". See https://vite.dev/guide/troubleshooting.html#module-externalized-for-browser-compatibility for more details.�[39m
13:21:37.692 �[33m[plugin vite:resolve] Module "node:zlib" has been externalized for browser compatibility, imported by "/vercel/path0/node_modules/.pnpm/[email protected]_@[email protected][email protected][email protected]/node_modules/vite/dist/node/chunks/dep-Bm2ujbhY.js". See https://vite.dev/guide/troubleshooting.html#module-externalized-for-browser-compatibility for more details.�[39m
13:21:37.692 �[33m[plugin vite:resolve] Module "node:readline" has been externalized for browser compatibility, imported by "/vercel/path0/node_modules/.pnpm/[email protected]_@[email protected][email protected][email protected]/node_modules/vite/dist/node/chunks/dep-Bm2ujbhY.js". See https://vite.dev/guide/troubleshooting.html#module-externalized-for-browser-compatibility for more details.�[39m
13:21:37.692 �[33m[plugin vite:resolve] Module "module" has been externalized for browser compatibility, imported by "/vercel/path0/node_modules/.pnpm/[email protected]_@[email protected][email protected][email protected]/node_modules/vite/dist/node/chunks/dep-Bm2ujbhY.js". See https://vite.dev/guide/troubleshooting.html#module-externalized-for-browser-compatibility for more details.�[39m
13:21:37.692 �[33m[plugin vite:resolve] Module "node:worker_threads" has been externalized for browser compatibility, imported by "/vercel/path0/node_modules/.pnpm/[email protected]_@[email protected][email protected][email protected]/node_modules/vite/dist/node/chunks/dep-Bm2ujbhY.js". See https://vite.dev/guide/troubleshooting.html#module-externalized-for-browser-compatibility for more details.�[39m
13:21:37.699 �[33m[plugin vite:resolve] Module "node:buffer" has been externalized for browser compatibility, imported by "/vercel/path0/node_modules/.pnpm/[email protected]_@[email protected][email protected][email protected]/node_modules/vite/dist/node/chunks/dep-Bm2ujbhY.js". See https://vite.dev/guide/troubleshooting.html#module-externalized-for-browser-compatibility for more details.�[39m
13:21:37.700 �[33m[plugin vite:resolve] Module "node:assert" has been externalized for browser compatibility, imported by "/vercel/path0/node_modules/.pnpm/[email protected]_@[email protected][email protected][email protected]/node_modules/vite/dist/node/chunks/dep-Bm2ujbhY.js". See https://vite.dev/guide/troubleshooting.html#module-externalized-for-browser-compatibility for more details.�[39m
13:21:37.700 �[33m[plugin vite:resolve] Module "node:process" has been externalized for browser compatibility, imported by "/vercel/path0/node_modules/.pnpm/[email protected]_@[email protected][email protected][email protected]/node_modules/vite/dist/node/chunks/dep-Bm2ujbhY.js". See https://vite.dev/guide/troubleshooting.html#module-externalized-for-browser-compatibility for more details.�[39m
13:21:37.700 �[33m[plugin vite:resolve] Module "node:v8" has been externalized for browser compatibility, imported by "/vercel/path0/node_modules/.pnpm/[email protected]_@[email protected][email protected][email protected]/node_modules/vite/dist/node/chunks/dep-Bm2ujbhY.js". See https://vite.dev/guide/troubleshooting.html#module-externalized-for-browser-compatibility for more details.�[39m
13:21:37.701 �[33m[plugin vite:resolve] Module "node:events" has been externalized for browser compatibility, imported by "/vercel/path0/node_modules/.pnpm/[email protected]_@[email protected][email protected][email protected]/node_modules/vite/dist/node/chunks/dep-Bm2ujbhY.js". See https://vite.dev/guide/troubleshooting.html#module-externalized-for-browser-compatibility for more details.�[39m
13:21:37.701 �[33m[plugin vite:resolve] Module "node:http" has been externalized for browser compatibility, imported by "/vercel/path0/node_modules/.pnpm/[email protected]_@[email protected][email protected][email protected]/node_modules/vite/dist/node/chunks/dep-Bm2ujbhY.js". See https://vite.dev/guide/troubleshooting.html#module-externalized-for-browser-compatibility for more details.�[39m
13:21:37.701 �[33m[plugin vite:resolve] Module "node:https" has been externalized for browser compatibility, imported by "/vercel/path0/node_modules/.pnpm/[email protected]_@[email protected][email protected][email protected]/node_modules/vite/dist/node/chunks/dep-Bm2ujbhY.js". See https://vite.dev/guide/troubleshooting.html#module-externalized-for-browser-compatibility for more details.�[39m
13:21:37.701 �[33m[plugin vite:resolve] Module "zlib" has been externalized for browser compatibility, imported by "/vercel/path0/node_modules/.pnpm/[email protected]_@[email protected][email protected][email protected]/node_modules/vite/dist/node/chunks/dep-Bm2ujbhY.js". See https://vite.dev/guide/troubleshooting.html#module-externalized-for-browser-compatibility for more details.�[39m
13:21:37.702 �[33m[plugin vite:resolve] Module "node:querystring" has been externalized for browser compatibility, imported by "/vercel/path0/node_modules/.pnpm/[email protected]_@[email protected][email protected][email protected]/node_modules/vite/dist/node/chunks/dep-Bm2ujbhY.js". See https://vite.dev/guide/troubleshooting.html#module-externalized-for-browser-compatibility for more details.�[39m
13:21:37.702 �[33m[plugin vite:resolve] Module "node:http" has been externalized for browser compatibility, imported by "/vercel/path0/node_modules/.pnpm/[email protected]_@[email protected][email protected][email protected]/node_modules/vite/dist/node/chunks/dep-Bm2ujbhY.js". See https://vite.dev/guide/troubleshooting.html#module-externalized-for-browser-compatibility for more details.�[39m
13:21:37.702 �[33m[plugin vite:resolve] Module "node:https" has been externalized for browser compatibility, imported by "/vercel/path0/node_modules/.pnpm/[email protected]_@[email protected][email protected][email protected]/node_modules/vite/dist/node/chunks/dep-Bm2ujbhY.js". See https://vite.dev/guide/troubleshooting.html#module-externalized-for-browser-compatibility for more details.�[39m
13:21:37.702 �[33m[plugin vite:resolve] Module "node:http2" has been externalized for browser compatibility, imported by "/vercel/path0/node_modules/.pnpm/[email protected]_@[email protected][email protected][email protected]/node_modules/vite/dist/node/chunks/dep-Bm2ujbhY.js". See https://vite.dev/guide/troubleshooting.html#module-externalized-for-browser-compatibility for more details.�[39m
13:21:37.702 �[33m[plugin vite:resolve] Module "node:fs/promises" has been externalized for browser compatibility, imported by "/vercel/path0/node_modules/.pnpm/[email protected]_@[email protected][email protected][email protected]/node_modules/vite/dist/node/chunks/dep-Bm2ujbhY.js". See https://vite.dev/guide/troubleshooting.html#module-externalized-for-browser-compatibility for more details.�[39m
13:21:37.702 �[33m[plugin vite:resolve] Module "node:path" has been externalized for browser compatibility, imported by "/vercel/path0/node_modules/.pnpm/[email protected]_@[email protected][email protected][email protected]/node_modules/vite/dist/node/chunks/dep-Bm2ujbhY.js". See https://vite.dev/guide/troubleshooting.html#module-externalized-for-browser-compatibility for more details.�[39m
13:21:37.744 �[33m[plugin vite:resolve] Module "path" has been externalized for browser compatibility, imported by "/vercel/path0/node_modules/.pnpm/[email protected]/node_modules/fs.realpath/old.js". See https://vite.dev/guide/troubleshooting.html#module-externalized-for-browser-compatibility for more details.�[39m
13:21:37.745 �[33m[plugin vite:resolve] Module "fs" has been externalized for browser compatibility, imported by "/vercel/path0/node_modules/.pnpm/[email protected]/node_modules/fs.realpath/old.js". See https://vite.dev/guide/troubleshooting.html#module-externalized-for-browser-compatibility for more details.�[39m
13:21:38.204 �[33m[plugin vite:resolve] Module "path" has been externalized for browser compatibility, imported by "/vercel/path0/node_modules/.pnpm/[email protected]/node_modules/resolve/lib/node-modules-paths.js". See https://vite.dev/guide/troubleshooting.html#module-externalized-for-browser-compatibility for more details.�[39m
13:21:38.300 �[33m[plugin vite:resolve] Module "assert" has been externalized for browser compatibility, imported by "/vercel/path0/node_modules/.pnpm/@[email protected]_@[email protected]/node_modules/@babel/helper-module-transforms/lib/index.js". See https://vite.dev/guide/troubleshooting.html#module-externalized-for-browser-compatibility for more details.�[39m
13:21:38.313 �[33m[plugin vite:resolve] Module "assert" has been externalized for browser compatibility, imported by "/vercel/path0/node_modules/.pnpm/@[email protected]_@[email protected]/node_modules/@babel/plugin-transform-regenerator/lib/regenerator/visit.js". See https://vite.dev/guide/troubleshooting.html#module-externalized-for-browser-compatibility for more details.�[39m
13:21:38.423 �[33m[plugin vite:resolve] Module "assert" has been externalized for browser compatibility, imported by "/vercel/path0/node_modules/.pnpm/@[email protected]/node_modules/@babel/helper-module-imports/lib/import-builder.js". See https://vite.dev/guide/troubleshooting.html#module-externalized-for-browser-compatibility for more details.�[39m
13:21:38.432 �[33m[plugin vite:resolve] Module "path" has been externalized for browser compatibility, imported by "/vercel/path0/node_modules/.pnpm/@[email protected]/node_modules/@babel/core/lib/config/partial.js". See https://vite.dev/guide/troubleshooting.html#module-externalized-for-browser-compatibility for more details.�[39m
13:21:38.434 �[33m[plugin vite:resolve] Module "path" has been externalized for browser compatibility, imported by "/vercel/path0/node_modules/.pnpm/@[email protected]/node_modules/@babel/core/lib/config/item.js". See https://vite.dev/guide/troubleshooting.html#module-externalized-for-browser-compatibility for more details.�[39m
13:21:38.441 �[33m[plugin vite:resolve] Module "path" has been externalized for browser compatibility, imported by "/vercel/path0/node_modules/.pnpm/@[email protected]/node_modules/@babel/core/lib/transformation/normalize-opts.js". See https://vite.dev/guide/troubleshooting.html#module-externalized-for-browser-compatibility for more details.�[39m
13:21:38.629 �[33m[plugin vite:resolve] Module "os" has been externalized for browser compatibility, imported by "/vercel/path0/node_modules/.pnpm/[email protected]/node_modules/resolve/lib/homedir.js". See https://vite.dev/guide/troubleshooting.html#module-externalized-for-browser-compatibility for more details.�[39m
13:21:38.736 �[33m[plugin vite:resolve] Module "path" has been externalized for browser compatibility, imported by "/vercel/path0/node_modules/.pnpm/[email protected]/node_modules/picomatch/lib/picomatch.js". See https://vite.dev/guide/troubleshooting.html#module-externalized-for-browser-compatibility for more details.�[39m
13:21:38.741 �[33m[plugin vite:resolve] Module "node:path" has been externalized for browser compatibility, imported by "/vercel/path0/node_modules/.pnpm/[email protected]/node_modules/rollup/dist/es/rollup.js". See https://vite.dev/guide/troubleshooting.html#module-externalized-for-browser-compatibility for more details.�[39m
13:21:38.742 �[33m[plugin vite:resolve] Module "path" has been externalized for browser compatibility, imported by "/vercel/path0/node_modules/.pnpm/[email protected]/node_modules/rollup/dist/es/rollup.js". See https://vite.dev/guide/troubleshooting.html#module-externalized-for-browser-compatibility for more details.�[39m
13:21:38.742 �[33m[plugin vite:resolve] Module "node:process" has been externalized for browser compatibility, imported by "/vercel/path0/node_modules/.pnpm/[email protected]/node_modules/rollup/dist/es/rollup.js". See https://vite.dev/guide/troubleshooting.html#module-externalized-for-browser-compatibility for more details.�[39m
13:21:38.742 �[33m[plugin vite:resolve] Module "node:perf_hooks" has been externalized for browser compatibility, imported by "/vercel/path0/node_modules/.pnpm/[email protected]/node_modules/rollup/dist/es/rollup.js". See https://vite.dev/guide/troubleshooting.html#module-externalized-for-browser-compatibility for more details.�[39m
13:21:38.743 �[33m[plugin vite:resolve] Module "node:fs/promises" has been externalized for browser compatibility, imported by "/vercel/path0/node_modules/.pnpm/[email protected]/node_modules/rollup/dist/es/rollup.js". See https://vite.dev/guide/troubleshooting.html#module-externalized-for-browser-compatibility for more details.�[39m
13:21:38.947 �[33m[plugin vite:resolve] Module "node:module" has been externalized for browser compatibility, imported by "/vercel/path0/node_modules/.pnpm/[email protected]_@[email protected][email protected][email protected]/node_modules/vite/dist/node/module-runner.js". See https://vite.dev/guide/troubleshooting.html#module-externalized-for-browser-compatibility for more details.�[39m
13:21:39.226 �[33m[plugin vite:resolve] Module "path" has been externalized for browser compatibility, imported by "/vercel/path0/node_modules/.pnpm/@[email protected]_@[email protected]/node_modules/@babel/helper-module-transforms/lib/normalize-and-load-metadata.js". See https://vite.dev/guide/troubleshooting.html#module-externalized-for-browser-compatibility for more details.�[39m
13:21:39.274 �[33m[plugin vite:resolve] Module "assert" has been externalized for browser compatibility, imported by "/vercel/path0/node_modules/.pnpm/@[email protected]_@[email protected]/node_modules/@babel/plugin-transform-regenerator/lib/regenerator/emit.js". See https://vite.dev/guide/troubleshooting.html#module-externalized-for-browser-compatibility for more details.�[39m
13:21:39.531 �[33m[plugin vite:resolve] Module "path" has been externalized for browser compatibility, imported by "/vercel/path0/node_modules/.pnpm/@[email protected]/node_modules/@babel/core/lib/config/config-chain.js". See https://vite.dev/guide/troubleshooting.html#module-externalized-for-browser-compatibility for more details.�[39m
13:21:39.564 �[33m[plugin vite:resolve] Module "fs" has been externalized for browser compatibility, imported by "/vercel/path0/node_modules/.pnpm/@[email protected]/node_modules/@babel/core/lib/transformation/normalize-file.js". See https://vite.dev/guide/troubleshooting.html#module-externalized-for-browser-compatibility for more details.�[39m
13:21:39.564 �[33m[plugin vite:resolve] Module "path" has been externalized for browser compatibility, imported by "/vercel/path0/node_modules/.pnpm/@[email protected]/node_modules/@babel/core/lib/transformation/normalize-file.js". See https://vite.dev/guide/troubleshooting.html#module-externalized-for-browser-compatibility for more details.�[39m
13:21:39.855 �[33m[plugin vite:resolve] Module "path" has been externalized for browser compatibility, imported by "/vercel/path0/node_modules/.pnpm/[email protected]/node_modules/picomatch/lib/utils.js". See https://vite.dev/guide/troubleshooting.html#module-externalized-for-browser-compatibility for more details.�[39m
13:21:39.859 �[33m[plugin vite:resolve] Module "path" has been externalized for browser compatibility, imported by "/vercel/path0/node_modules/.pnpm/[email protected]/node_modules/picomatch/lib/constants.js". See https://vite.dev/guide/troubleshooting.html#module-externalized-for-browser-compatibility for more details.�[39m
13:21:40.449 �[33m[plugin vite:resolve] Module "assert" has been externalized for browser compatibility, imported by "/vercel/path0/node_modules/.pnpm/@[email protected]_@[email protected]/node_modules/@babel/plugin-transform-regenerator/lib/regenerator/leap.js". See https://vite.dev/guide/troubleshooting.html#module-externalized-for-browser-compatibility for more details.�[39m
13:21:40.452 �[33m[plugin vite:resolve] Module "assert" has been externalized for browser compatibility, imported by "/vercel/path0/node_modules/.pnpm/@[email protected]_@[email protected]/node_modules/@babel/plugin-transform-regenerator/lib/regenerator/meta.js". See https://vite.dev/guide/troubleshooting.html#module-externalized-for-browser-compatibility for more details.�[39m
13:21:40.700 �[33m[plugin vite:resolve] Module "node:path" has been externalized for browser compatibility, imported by "/vercel/path0/node_modules/.pnpm/[email protected]/node_modules/rollup/dist/es/shared/node-entry.js". See https://vite.dev/guide/troubleshooting.html#module-externalized-for-browser-compatibility for more details.�[39m
13:21:40.702 �[33m[plugin vite:resolve] Module "path" has been externalized for browser compatibility, imported by "/vercel/path0/node_modules/.pnpm/[email protected]/node_modules/rollup/dist/es/shared/node-entry.js". See https://vite.dev/guide/troubleshooting.html#module-externalized-for-browser-compatibility for more details.�[39m
13:21:40.702 �[33m[plugin vite:resolve] Module "node:process" has been externalized for browser compatibility, imported by "/vercel/path0/node_modules/.pnpm/[email protected]/node_modules/rollup/dist/es/shared/node-entry.js". See https://vite.dev/guide/troubleshooting.html#module-externalized-for-browser-compatibility for more details.�[39m
13:21:40.703 �[33m[plugin vite:resolve] Module "node:perf_hooks" has been externalized for browser compatibility, imported by "/vercel/path0/node_modules/.pnpm/[email protected]/node_modules/rollup/dist/es/shared/node-entry.js". See https://vite.dev/guide/troubleshooting.html#module-externalized-for-browser-compatibility for more details.�[39m
13:21:40.703 �[33m[plugin vite:resolve] Module "node:fs/promises" has been externalized for browser compatibility, imported by "/vercel/path0/node_modules/.pnpm/[email protected]/node_modules/rollup/dist/es/shared/node-entry.js". See https://vite.dev/guide/troubleshooting.html#module-externalized-for-browser-compatibility for more details.�[39m
13:21:40.711 �[31m✗�[39m Build failed in 17.70s
13:21:40.711 �[31m✗�[0m building client + server bundles...
13:21:40.768 �[33m[plugin vite:resolve] Module "path" has been externalized for browser compatibility, imported by "/vercel/path0/node_modules/.pnpm/@[email protected]/node_modules/@babel/core/lib/config/pattern-to-regex.js". See https://vite.dev/guide/troubleshooting.html#module-externalized-for-browser-compatibility for more details.�[39m
13:21:41.255 �[31mbuild error:�[39m
13:21:41.255 �[31m[vite-plugin-pwa:build] [plugin vite-plugin-pwa:build] There was an error during the build:
13:21:41.255   [vite]: Rollup failed to resolve import "fsevents" from "/vercel/path0/node_modules/.pnpm/[email protected]/node_modules/rollup/dist/es/shared/node-entry.js".
13:21:41.255 This is most likely unintended because it can break your application at runtime.
13:21:41.256 If you do want to externalize this module explicitly add it to
13:21:41.256 `build.rollupOptions.external`
13:21:41.256 Additionally, handling the error in the 'buildEnd' hook caused the following error:
13:21:41.256   [vite]: Rollup failed to resolve import "fsevents" from "/vercel/path0/node_modules/.pnpm/[email protected]/node_modules/rollup/dist/es/shared/node-entry.js".
13:21:41.256 This is most likely unintended because it can break your application at runtime.
13:21:41.257 If you do want to externalize this module explicitly add it to
13:21:41.257 `build.rollupOptions.external`�[39m
13:21:41.257 �[31m[vite-plugin-pwa:build] [plugin vite-plugin-pwa:build] There was an error during the build:
13:21:41.257   [vite]: Rollup failed to resolve import "fsevents" from "/vercel/path0/node_modules/.pnpm/[email protected]/node_modules/rollup/dist/es/shared/node-entry.js".
13:21:41.257 This is most likely unintended because it can break your application at runtime.
13:21:41.258 If you do want to externalize this module explicitly add it to
13:21:41.258 `build.rollupOptions.external`
13:21:41.258 Additionally, handling the error in the 'buildEnd' hook caused the following error:
13:21:41.258   [vite]: Rollup failed to resolve import "fsevents" from "/vercel/path0/node_modules/.pnpm/[email protected]/node_modules/rollup/dist/es/shared/node-entry.js".
13:21:41.258 This is most likely unintended because it can break your application at runtime.
13:21:41.258 If you do want to externalize this module explicitly add it to
13:21:41.259 `build.rollupOptions.external`�[39m
13:21:41.259     at getRollupError (file:///vercel/path0/node_modules/.pnpm/[email protected]/node_modules/rollup/dist/es/shared/parseAst.js:401:41)
13:21:41.259     at file:///vercel/path0/node_modules/.pnpm/[email protected]/node_modules/rollup/dist/es/shared/node-entry.js:23321:39
13:21:41.259     at async catchUnfinishedHookActions (file:///vercel/path0/node_modules/.pnpm/[email protected]/node_modules/rollup/dist/es/shared/node-entry.js:22779:16)
13:21:41.259     at async rollupInternal (file:///vercel/path0/node_modules/.pnpm/[email protected]/node_modules/rollup/dist/es/shared/node-entry.js:23304:5)
13:21:41.259     at async buildEnvironment (file:///vercel/path0/node_modules/.pnpm/[email protected]_@[email protected][email protected][email protected]/node_modules/vite/dist/node/chunks/dep-Bm2ujbhY.js:33860:12)
13:21:41.259     at async Object.build (file:///vercel/path0/node_modules/.pnpm/[email protected]_@[email protected][email protected][email protected]/node_modules/vite/dist/node/chunks/dep-Bm2ujbhY.js:34220:19)
13:21:41.260     at async file:///vercel/path0/node_modules/.pnpm/[email protected]_@[email protected][email protected][email protected]_en_7b9730076f7966b903339890f8e63af4/node_modules/vitepress/dist/node/chunk-3d7P_gGE.js:42550:40
13:21:41.260     at async task (file:///vercel/path0/node_modules/.pnpm/[email protected]_@[email protected][email protected][email protected]_en_7b9730076f7966b903339890f8e63af4/node_modules/vitepress/dist/node/chunk-3d7P_gGE.js:41802:5)
13:21:41.260     at async bundle (file:///vercel/path0/node_modules/.pnpm/[email protected]_@[email protected][email protected][email protected]_en_7b9730076f7966b903339890f8e63af4/node_modules/vitepress/dist/node/chunk-3d7P_gGE.js:42549:3)
13:21:41.260     at async build (file:///vercel/path0/node_modules/.pnpm/[email protected]_@[email protected][email protected][email protected]_en_7b9730076f7966b903339890f8e63af4/node_modules/vitepress/dist/node/chunk-3d7P_gGE.js:46805:59)
13:21:41.337 �[41m�[30m ELIFECYCLE �[39m�[49m �[31mCommand failed with exit code 1.�[39m
13:21:41.356 
13:21:41.356 
13:21:41.356 
13:21:41.356  Lerna (powered by Nx)   Running target build for project @shellraining/content failed
13:21:41.357 
13:21:41.357 Failed tasks:
13:21:41.357 
13:21:41.357 - @shellraining/content:build
13:21:41.357 
13:21:41.357 Hint: run the command with --verbose for more details.
13:21:41.357 
13:21:41.677  ELIFECYCLE  Command failed with exit code 1.
13:21:41.693 Error: Command "pnpm run build" exited with 1

Copilot AI changed the title [WIP] Add PWA support to improve mobile experience Add PWA support for offline capability and home screen installation Oct 26, 2025
Copilot AI requested a review from shellRaining October 26, 2025 05:43
Copilot finished work on behalf of shellRaining October 26, 2025 05:43
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

添加 pwa 支持

2 participants