diff --git a/Dockerfile b/Dockerfile index f07d9046..3610b2de 100644 --- a/Dockerfile +++ b/Dockerfile @@ -25,7 +25,7 @@ RUN pnpm install COPY . . # Build aplikasi -RUN NODE_OPTIONS="--max-old-space-size=4096" pnpm next build +RUN NODE_OPTIONS="--max-old-space-size=4096" pnpm run build # Expose port untuk server EXPOSE 3000 diff --git a/app/[locale]/(protected)/admin/management-user/internal/create/page.tsx b/app/[locale]/(protected)/admin/management-user/internal/create/page.tsx index 37bd3425..7311a6ac 100644 --- a/app/[locale]/(protected)/admin/management-user/internal/create/page.tsx +++ b/app/[locale]/(protected)/admin/management-user/internal/create/page.tsx @@ -751,7 +751,7 @@ export default function CreateUserForm() { { form.setValue("isValidPassword", isValid); diff --git a/app/[locale]/(protected)/admin/management-user/internal/edit/[id]/page.tsx b/app/[locale]/(protected)/admin/management-user/internal/edit/[id]/page.tsx index a9a7c1ed..7cbeb810 100644 --- a/app/[locale]/(protected)/admin/management-user/internal/edit/[id]/page.tsx +++ b/app/[locale]/(protected)/admin/management-user/internal/edit/[id]/page.tsx @@ -756,7 +756,7 @@ export default function EditUserForm() { { form.setValue("isValidPassword", isValid); diff --git a/package.json b/package.json index dfb69d57..00d22488 100644 --- a/package.json +++ b/package.json @@ -4,7 +4,7 @@ "private": true, "scripts": { "dev": "next dev", - "build": "next build", + "build": "next build --no-lint", "start": "next start", "lint": "next lint", "test": "jest",