fix(partial): get dev env working (#7356)

part of #7355
This commit is contained in:
Aaron Heckmann
2025-07-08 01:03:12 -07:00
committed by GitHub
parent ab79a5da10
commit c0f986cf95
3 changed files with 3 additions and 6 deletions

View File

@@ -5,8 +5,7 @@
"license": "AGPL-3.0",
"private": true,
"scripts": {
"dev": "turbo run develop",
"develop": "next dev --port 3001",
"dev": "next dev --port 3001",
"build": "next build",
"preview": "next build && next start",
"start": "next start",

View File

@@ -4,8 +4,7 @@
"private": true,
"license": "AGPL-3.0",
"scripts": {
"dev": "turbo run develop",
"develop": "next dev -p 3002",
"dev": "next dev -p 3002",
"build": "next build",
"start": "next start",
"clean": "rm -rf .turbo && rm -rf .next && rm -rf node_modules && rm -rf dist",

View File

@@ -4,8 +4,7 @@
"private": true,
"license": "AGPL-3.0",
"scripts": {
"dev": "turbo run develop",
"develop": "next dev --port 3000",
"dev": "next dev --port 3000",
"build": "next build",
"start": "next start",
"clean": "rm -rf .turbo && rm -rf .next && rm -rf node_modules && rm -rf dist",