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.
This commit is contained in:
Mauricio Siu
2026-02-16 14:50:08 -06:00
parent e5f51fd7be
commit 02a695c6af

View File

@@ -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",