diff --git a/netlify.toml b/netlify.toml index ea3d135..2b8a441 100644 --- a/netlify.toml +++ b/netlify.toml @@ -7,23 +7,23 @@ NPM_VERSION = "10.2.4" [context.production] - command = "pnpm build" + command = "npm run build" [context.deploy-preview] - command = "pnpm build -- -b $DEPLOY_PRIME_URL" + command = "npm run build -- -b $DEPLOY_PRIME_URL" [context.branch-deploy] - command = "pnpm build -- -b $DEPLOY_PRIME_URL" + command = "npm run build -- -b $DEPLOY_PRIME_URL" [context.next] - command = "pnpm build" + command = "npm run build" [context.next.environment] HUGO_ENV = "next" [dev] framework = "#custom" - command = "pnpm dev" + command = "npm run dev" targetPort = 1313 port = 8888 publish = "public"