From d45af5a01cba6220489561e7c59732ccc5a87099 Mon Sep 17 00:00:00 2001 From: "Dotan J. Nahum" Date: Wed, 23 Oct 2024 15:21:37 +0300 Subject: [PATCH] fix: clarify instruction for client-side build --- loco-cli/src/messages.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/loco-cli/src/messages.rs b/loco-cli/src/messages.rs index 729ae3efe..a977e061d 100644 --- a/loco-cli/src/messages.rs +++ b/loco-cli/src/messages.rs @@ -36,8 +36,8 @@ pub fn for_options( } match assetopt { AssetsOption::Clientside => res.push(format!( - "{}: You've selected `{}` for your asset serving configuration (remember to build \ - your frontend in `{}`)", + "{}: You've selected `{}` for your asset serving configuration.\n\nNext step, build \ + your frontend:\n $ cd {}\n $ npm install && npm build\n", "assets".underline(), "clientside".yellow(), "frontend/".yellow()