mirror of
https://github.com/johndoe6345789/metabuilder.git
synced 2026-04-24 22:04:56 +00:00
fix: Auto-clean .next cache on dev start to prevent stale build errors
Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
This commit is contained in:
@@ -4,11 +4,12 @@
|
||||
"description": "Interactive exploded diagram viewer - Next.js",
|
||||
"private": true,
|
||||
"scripts": {
|
||||
"dev": "next dev --turbopack",
|
||||
"dev:webpack": "next dev",
|
||||
"dev": "rm -rf .next && next dev --turbopack",
|
||||
"dev:webpack": "rm -rf .next && next dev",
|
||||
"build": "next build",
|
||||
"start": "next start",
|
||||
"lint": "next lint"
|
||||
"lint": "next lint",
|
||||
"clean": "rm -rf .next node_modules/.cache"
|
||||
},
|
||||
"dependencies": {
|
||||
"next": "15.3.4",
|
||||
|
||||
Reference in New Issue
Block a user