From 4fd06b00a0e05a11d6bc2d03b3a1ea1447c9454c Mon Sep 17 00:00:00 2001 From: Mauricio Siu Date: Mon, 16 Feb 2026 02:23:35 -0600 Subject: [PATCH] chore(dokploy): simplify build-next command in package.json - Removed the unnecessary --webpack flag from the build-next script, streamlining the build process. --- apps/dokploy/package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/dokploy/package.json b/apps/dokploy/package.json index 1dbd0a3bc..a7e5c324a 100644 --- a/apps/dokploy/package.json +++ b/apps/dokploy/package.json @@ -8,7 +8,7 @@ "build": "npm run build-server && npm run build-next", "start": "node -r dotenv/config dist/migration.mjs && node -r dotenv/config dist/server.mjs", "build-server": "tsx esbuild.config.ts", - "build-next": "next build --webpack", + "build-next": "next build", "setup": "tsx -r dotenv/config setup.ts && sleep 5 && pnpm run migration:run", "wait-for-postgres": "node -r dotenv/config dist/wait-for-postgres.mjs", "wait-for-postgres-dev": "tsx -r dotenv/config wait-for-postgres.ts",