change var

This commit is contained in:
Zheyuan Wu
2025-07-10 14:55:56 -05:00
parent d64d10ef6d
commit da283e28cc
5 changed files with 24 additions and 14 deletions

View File

@@ -1,10 +1,10 @@
{
"scripts": {
"dev": "next dev",
"build": "cross-env NODE_OPTIONS='--max-old-space-size=16384' next build && npm run postbuild",
"dev": "next --turbopack",
"build": "cross-env VERCEL_FORCE_NO_BUILD_CACHE=1 NODE_OPTIONS='--max-old-space-size=16384' next build && npm run postbuild",
"build:test": "cross-env ANALYZE=true NODE_OPTIONS='--inspect --max-old-space-size=4096' next build",
"build:analyze": "cross-env ANALYZE=true NODE_OPTIONS='--max-old-space-size=16384' next build",
"postbuild": "pagefind --site .next/server/app --output-path public/_pagefind",
"postbuild": "next-sitemap && pagefind --site .next/server/app --output-path public/_pagefind && cp -r ./public/_pagefind ./out",
"start": "next start"
},
"dependencies": {