Skip to content
Merged
Changes from all commits
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
4 changes: 2 additions & 2 deletions docs/content/docs/1.getting-started/3.confetti-tutorial.md
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ This is a [registry script](/scripts), a supported
third-party integration built on top of the
[useScript](/docs/api/use-script) composable that allows you to load scripts from NPM.

When working with NPM files, you'd typically include them as a node_module dependency in the `package.json` file. However,
When working with NPM files, you'd typically include them as a `node_module` dependency in the `package.json` file. However,
optimizing the script loading of these scripts can be difficult, requiring a dynamic import of the module from a separate chunk and
loading it only when needed. It also slows down your build as the module needs to be transpiled.

Expand Down Expand Up @@ -60,7 +60,7 @@ useHead({

### Loading the script

Within your one of your components, you'll want to load the script. You can do this by using the `useScriptNpm` registry script.
Within one of your components, you'll want to load the script. You can do this by using the `useScriptNpm` registry script.

```vue [app.vue]
<script setup lang="ts">
Expand Down
Loading