From ee783bf0b3ad9f3387b9a76b3789e68d030a0cc9 Mon Sep 17 00:00:00 2001 From: Bregy Malpartida Date: Wed, 18 Jan 2023 21:18:28 -0500 Subject: [PATCH] fix: fixed yarn build command --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index 14a03ad5..1051bb12 100644 --- a/package.json +++ b/package.json @@ -6,7 +6,7 @@ "generate": "graphql-codegen -c codegen.yml", "format": "prettier --write '**/*.{ts,tsx,graphql}'", "dev": "next dev", - "build": "next build", + "build": "next build && next export", "start": "next start", "lint": "next lint" },