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