Skip to content
Closed
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion src/components/Splash/second/left.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -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"),
Expand All @@ -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.
2 changes: 1 addition & 1 deletion src/content/index.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ import Install from "../components/Splash/install/install.mdx";
</div>
</div>

Then run `webpack` on the command-line to create `bundle.js`.
Then run `npx webpack` on the command-line to create `bundle.js`.
Copy link
Copy Markdown
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Don't use npx

Copy link
Copy Markdown
Author

@KumarMunesh12 KumarMunesh12 Mar 25, 2026

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Thanks! Got it, will i revert that line back to webpack.

Should I leave it as-is or add a note pointing to the npm scripts
approach? Happy to do either.

Copy link
Copy Markdown
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

You can use webpack after installation without extra scripts


## Awesome, isn't it? Let's dive in!

Expand Down
Loading