Skip to content

Installation

nuxt-ignis is available as NPM package that can be referenced as a single dependency with all the features wrapped up.

Adding to your project

To enable nuxt-ignis in your Nuxt project, follow these steps:

  1. Add the following dependency into your package.json:
package.json
json
"nuxt-ignis": "0.4.0"
  1. Add following section into your nuxt.config.ts:
nuxt.config.ts
ts
extends: [
  'nuxt-ignis'
]
  1. Add .npmrc file with following content (if you don't have it yet):
.npmrc
shamefully-hoist=true
strict-peer-dependencies=false
  1. Setup your .env to fit your project needs. Check the reference for all available config options.

  2. Congratulations! You are ready to build your next awesome project in Nuxt!

More info

  • Proceed to the Configuration section to get the big picture and learn how to set nuxt-ignis up for your project.