From c38aae0be3148af14c86c8bb3e61026aeaee19e8 Mon Sep 17 00:00:00 2001 From: KumarMunesh12 Date: Wed, 25 Mar 2026 15:05:04 +0500 Subject: [PATCH 1/2] docs: fix getting started UX issues from #7510 --- src/components/Splash/second/left.mdx | 3 ++- src/content/index.mdx | 2 +- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/src/components/Splash/second/left.mdx b/src/components/Splash/second/left.mdx index bbec01fecb08..b3221f21eb44 100644 --- a/src/components/Splash/second/left.mdx +++ b/src/components/Splash/second/left.mdx @@ -8,6 +8,7 @@ const __filename = fileURLToPath(import.meta.url); const __dirname = path.dirname(__filename); export default { + mode: "development", entry: "./src/index.js", output: { path: path.resolve(__dirname, "dist"), @@ -16,4 +17,4 @@ export default { }; ``` -Prefer a video walkthrough? **[Without config](https://youtu.be/3Nv9muOkb6k?t=21293)** +Prefer a video walkthrough instead? See the **[Without config](https://youtu.be/3Nv9muOkb6k?t=21293)** guide. diff --git a/src/content/index.mdx b/src/content/index.mdx index b012c92a1d30..6865e98d2a23 100644 --- a/src/content/index.mdx +++ b/src/content/index.mdx @@ -39,7 +39,7 @@ import Install from "../components/Splash/install/install.mdx"; -Then run `webpack` on the command-line to create `bundle.js`. +Then run `npx webpack` on the command-line to create `bundle.js`. ## Awesome, isn't it? Let's dive in! From a5d0627c50ec1de146a525db01ec99a755961370 Mon Sep 17 00:00:00 2001 From: KumarMunesh12 Date: Wed, 25 Mar 2026 16:19:57 +0500 Subject: [PATCH 2/2] docs: revert npx webpack per maintainer feedback --- src/content/index.mdx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/content/index.mdx b/src/content/index.mdx index 6865e98d2a23..b012c92a1d30 100644 --- a/src/content/index.mdx +++ b/src/content/index.mdx @@ -39,7 +39,7 @@ import Install from "../components/Splash/install/install.mdx"; -Then run `npx webpack` on the command-line to create `bundle.js`. +Then run `webpack` on the command-line to create `bundle.js`. ## Awesome, isn't it? Let's dive in!