Skip to content

Commit

Permalink
chore: update readme and module
Browse files Browse the repository at this point in the history
  • Loading branch information
dominikstrasser committed Oct 28, 2024
1 parent 06e3d51 commit c3c58e2
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 7 deletions.
12 changes: 6 additions & 6 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ Get your module up and running quickly.
Find and replace all on all files (CMD+SHIFT+F):
- Name: dcupl - Nuxt
- Package name: @nuxtjs/dcupl
- Package name: @dcupl/nuxt
- Description: My new Nuxt module
-->

Expand All @@ -27,28 +27,28 @@ dcupl - Nuxt is a powerful and easy-to-use Nuxt module that semlessly integrates
Install the module to your Nuxt application with one command:

```bash
npx nuxi module add @nuxtjs/dcupl
npx nuxi module add @dcupl/nuxt
```

or using any package manager:

```bash
# Using pnpm
pnpm add @nuxtjs/dcupl
pnpm add @dcupl/nuxt

# Using yarn
yarn add @nuxtjs/dcupl
yarn add @dcupl/nuxt

# Using npm
npm install @nuxtjs/dcupl
npm install @dcupl/nuxt
```

Add the module to your `nuxt.config.js`:

```js
export default {
modules: [
'@nuxtjs/dcupl'
'@dcupl/nuxt'
],
dcupl: {
//Options
Expand Down
2 changes: 1 addition & 1 deletion src/module.ts
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ export interface DcuplModuleOptions extends DcuplInitOptions {

export default defineNuxtModule<DcuplModuleOptions>({
meta: {
name: "@nuxtjs/dcupl",
name: "@dcupl/nuxt",
configKey: "dcupl",
},
// Default configuration options of the Nuxt module
Expand Down

0 comments on commit c3c58e2

Please sign in to comment.