From 02a695c6af34b8ea3a98e4233f4a3cc1b9f8812c Mon Sep 17 00:00:00 2001 From: Mauricio Siu Date: Mon, 16 Feb 2026 14:50:08 -0600 Subject: [PATCH] chore(dokploy): update build-next command to use webpack - Modified the build-next script in package.json to include the --webpack flag, enhancing the build process for the Dokploy application. --- 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 45a50563b..cc94e9dc1 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", + "build-next": "next build --webpack", "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",