Quick Setup

  1. Add nuxt-mapbox & mapbox-gl dependencies to your project
pnpm
pnpm add -D nuxt-mapbox mapbox-gl
yarn
yarn add --dev nuxt-mapbox mapbox-gl
npm
npm install --save-dev nuxt-mapbox mapbox-gl
  1. Add nuxt-mapbox to the modules section of nuxt.config.ts
export default defineNuxtConfig({
  modules: [
    'nuxt-mapbox'
  ]
})
  1. Add your Mapbox API key to the mapbox section of nuxt.config.ts
export default defineNuxtConfig({
  modules: [
    'nuxt-mapbox'
  ],
  mapbox: {
    accessToken: '{API_KEY}'
  }
})